Answers for "php pretty print"

PHP
4

php pretty print

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

php json pretty print

$json_string = json_encode($data, JSON_PRETTY_PRINT);
Posted by: Guest on February-03-2021
-1

php print array nice format

print "<pre>";
print_r($data);
print "</pre>";
Posted by: Guest on June-29-2020

Browse Popular Code Answers by Language