Php 7和xDebug配置

时间:2016-02-12 08:46:47

标签: php xdebug

我刚刚迁移到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)

0 个答案:

没有答案