diff options
author | afaqurk <afaq05@gmail.com> | 2013-08-31 23:29:51 -0400 |
---|---|---|
committer | afaqurk <afaq05@gmail.com> | 2013-08-31 23:29:51 -0400 |
commit | 6071e57cd962462e720f33ec7870810cd67ba528 (patch) | |
tree | e145003f7fee121665ec4603743da8127ccfae7e /php.html.markdown | |
parent | 7af1a853d474fce4feae2429d5e194649fc59105 (diff) |
spelling error on php function: var_dumb() = var_dump()
Diffstat (limited to 'php.html.markdown')
-rw-r--r-- | php.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php.html.markdown b/php.html.markdown index 1cc6d2c5..0ff31dd2 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -177,7 +177,7 @@ echo $x; // => 2 echo $z; // => 0 // 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 print_r($array); // prints: Array ( [0] => One [1] => Two [2] => Three ) |