we can put var_dump() to the test:
$testing = 5;
var_dump($testing);
This fragment gives us the following result:
int(5)
Notice that we did not need to print the result of var_ump(); this is because the function prints its findings directly to the browser or command line.
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.