Skip to content

Instantly share code, notes, and snippets.

@valerianpereira
Last active March 16, 2018 09:16
Show Gist options
  • Save valerianpereira/24843c01c25a10f4f673b854f2be1518 to your computer and use it in GitHub Desktop.
Save valerianpereira/24843c01c25a10f4f673b854f2be1518 to your computer and use it in GitHub Desktop.
/*
* 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