Answers for "get info out an array in a nice way php"

PHP
0

php array formatted output

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

php echo array

$a = array ('a' => 'apple', 'b' => 'banana', 'c' => array ('x', 'y', 'z'));
print_r ($a);
Posted by: Guest on October-08-2020

Browse Popular Code Answers by Language