Skip to content

Instantly share code, notes, and snippets.

@eddiemoya
Last active October 5, 2015 15:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eddiemoya/2829868 to your computer and use it in GitHub Desktop.
Save eddiemoya/2829868 to your computer and use it in GitHub Desktop.
Print Pre
<?php
function print_pre($array){
echo "<pre style='z-index:1000;background-color:rgba(192,192,192,0.9);left:0;top:100px;width:4000px;overflow:scroll;position:absolute;white-space: pre;'>";
print_r($array);
echo "</pre>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment