Guest User

Untitled

a guest
Oct 22nd, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. /*
  2. * Display the array in a formatted manner
  3. * Skip the struggle reading the array unformatted.
  4. * Usage: rPrint($arrayElement);
  5. */
  6. function rPrint($arr) {
  7. echo '<pre>';
  8. print_r($arr);
  9. echo '</pre>';
  10. }
Add Comment
Please, Sign In to add comment