Last active
March 16, 2018 09:16
-
-
Save valerianpereira/24843c01c25a10f4f673b854f2be1518 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Display the array in a formatted manner | |
* Skip the struggle reading the array unformatted. | |
* Usage: rPrint($arrayElement); | |
*/ | |
function rPrint($arr) { | |
echo '<pre>'; | |
print_r($arr); | |
echo '</pre>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment