PHP 8.4.24 Released!

Voting

: five minus zero?
(Example: nine)

The Note You're Voting On

Anonymous
14 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