<?php$b = array ('m' => 'monkey', 'foo' => 'bar', 'x' => array ('x', 'y', 'z'));$results = print_r($b, true); // $results now contains output from print_recho "<pre>".$results."</pre>"die("Process Terminated");?>OUTPUT WILL LOOK AS FOLLOWS --pre wont be visible.<pre>Array([a] => apple[b] => banana[c] => Array([0] => x[1] => y[2] => z))</pre>
↧