I want to print the array identifier name along with its content.
In situations where a page contains many arrays, then there is a confusion -
which elements belong to which array.
$user= array('id' => 1,'name' => "Tom");
//expectation
user
Array
(
[id] => 1
[name] => Tom
)
No comments:
Post a Comment