dwhitzzz

make var_dump look pretty | hilight_string

Jul 4th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. //I really love var_export(). If you like copy/paste-able code, try:
  2.  
  3. echo '<pre>' . var_export($data, true) . '</pre>';
  4. //Or even something like this for color syntax highlighting:
  5.  
  6. highlight_string("<?php\n\$data =\n" . var_export($data, true) . ";\n?>");
Add Comment
Please, Sign In to add comment