Fixed typo s/dump_var/var_dump/

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@33589 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jesus M. Castagnetto 2000-10-10 23:53:07 +00:00
parent 5288e30420
commit 2dc8923fd3

View file

@ -1149,7 +1149,7 @@ function showVar($var) {
if (PHPVERSION == 4) {
print_r($var);
} else {
dump_var($var);
var_dump($var);
}
}