我刚刚迁移到php7,我安装了xdebug。
我注意到,当我们var_dump
时,xdebug会显示文件和行号。
示例:
<?php
var_dump(1);
var_dump('a');
var_dump([1,2,3,'a']);
?>
将显示为:
/path/to/project/index.php:3:int 1
/path/to/project/index.php:4:string 'a' (length=1)
/path/to/project/index.php:5:
array (size=4)
0 => int 1
1 => int 2
2 => int 3
3 => string 'a' (length=1)
这非常好,非常有用,但是我们可以将file info
和结果放在单独的行上以便于阅读吗?
像:
/path/to/project/index.php:3:
int 1
/path/to/project/index.php:4:
string 'a' (length=1)
/path/to/project/index.php:5:
array (size=4)
0 => int 1
1 => int 2
2 => int 3
3 => string 'a' (length=1)