This commit is contained in:
kobus 2018-04-20 09:58:57 +02:00
parent d97ae72eba
commit 6482a577f5
1 changed files with 5 additions and 1 deletions

View File

@ -1,8 +1,12 @@
<?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
*/