Var dump(): Difference between revisions

MorMythos (talk | contribs)
No edit summary
MorMythos (talk | contribs)
 
Line 20: Line 20:


===Example===
===Example===
<code>$colors = ['red', 'green', 'blue'];</code><br>
 
<code>var_dump($colors);</code>
<code>$hot_women = ['Tinashe', 'Senait Gidey', 'Jisoo'];</code><br>
<code>var_dump($hot_women);</code>


Outputs:
Outputs:
Line 27: Line 28:
<pre>
<pre>
array(3) {
array(3) {
   [0]=> string(3) "red"
   [0]=> string(7) "Tinashe"
   [1]=> string(5) "green"
   [1]=> string(12) "Senait Gidey"
   [2]=> string(4) "blue"
   [2]=> string(5) "Jisoo"
}
}
</pre>
</pre>