1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-11 17:24:29 +02:00

spelling error on php function: var_dumb() = var_dump()

This commit is contained in:
afaqurk
2013-08-31 23:29:51 -04:00
parent 7af1a853d4
commit 6071e57cd9

View File

@@ -177,7 +177,7 @@ echo $x; // => 2
echo $z; // => 0 echo $z; // => 0
// Dumps type and value of variable to stdout // Dumps type and value of variable to stdout
var_dumb($z); // prints int(0) var_dump($z); // prints int(0)
// Prints variable to stdout in human-readable format // Prints variable to stdout in human-readable format
print_r($array); // prints: Array ( [0] => One [1] => Two [2] => Three ) print_r($array); // prints: Array ( [0] => One [1] => Two [2] => Three )