Voting

: eight minus zero?
(Example: nine)

The Note You're Voting On

Anonymous
13 years ago
There is an even simpler way to have clean output from var_export and print_r in html pages:

<?php
function pretty_var($myArray)
{
echo
"<pre>";
var_export($myArray);
echo
"</pre>";
}
?>

<< Back to user notes page

To Top