php pretty print code example
Example 1: php pretty print
print("<pre>".print_r($array_data,true)."</pre>");
Example 2: php json pretty print
$json_string = json_encode($data, JSON_PRETTY_PRINT);
Example 3: php print array nice format
print "<pre>";
print_r($data);
print "</pre>";