mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-27 07:33:57 +00:00
Merge pull request #280 from afaqurk/phpDocumentationUpdate
PHP documentation update
This commit is contained in:
commit
b1daee2587
@ -176,6 +176,11 @@ $y = 0;
|
||||
echo $x; // => 2
|
||||
echo $z; // => 0
|
||||
|
||||
// Dumps type and value of variable to stdout
|
||||
var_dumb($z); // prints int(0)
|
||||
|
||||
// Prints variable to stdout in human-readable format
|
||||
print_r($array); // prints: Array ( [0] => One [1] => Two [2] => Three )
|
||||
|
||||
/********************************
|
||||
* Logic
|
||||
|
Loading…
Reference in New Issue
Block a user