Answers for "php print r making it nicer"

PHP
4

print beauty php

print("<pre>".print_r($array_data,true)."</pre>");
Posted by: Guest on June-04-2020
0

php print_r

<pre>
<?php
$a = array ('a' => 'apple', 'b' => 'banana', 'c' => array ('x', 'y', 'z'));
print_r ($a);
?>
</pre>
Posted by: Guest on November-21-2020

Browse Popular Code Answers by Language