1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-06-07 06:50:47 +00:00
This commit is contained in:
kobus 2018-04-20 09:58:57 +02:00
parent d97ae72eba
commit 6482a577f5

View File

@ -1,8 +1,12 @@
<?php <?php
/** /**
* * Printing
*/ */
echo ""; // Print a string or type that can be made into a string(I.E int, float).
print_r($arr); // Print anything, with type hints for array's and object's
var_dump($arr); // Print anything, with type hints for any value and sizes
/** /**
* Ways of looping * Ways of looping
*/ */