I see manual of php.net and see sortie of examples, when use var_dump and others commands for see examples.
All examples sort with pre style.
But on my own server I see same examples on only one line
var_dump($a);
On manual see->
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
array(3) {
[0]=>
string(1) "a"
[1]=>
string(1) "b"
[2]=>
string(1) "c"
}
}
On my server I see:
array(3) {[0]=>int(1) [1]=>int(2) [2]=>array(3) {[0]=>string(1) "a" [1]=>string(1) "b" [2]=>string(1) "c"}}
I think this is a runtime option, which I can change, but I'm not sure. So how can I get the output in the same format as in the manual?