LoginSignup
6
7

More than 5 years have passed since last update.

var_dump() で出力する内容を省略させない

Posted at

var_dump() で出力する内容を省略させない

結構見かける内容ですが、cliでデバッグする際によく使うのでメモ代わりです。

ini_set('xdebug.var_display_max_children', -1);
ini_set('xdebug.var_display_max_data', -1);
ini_set('xdebug.var_display_max_depth', -1);
6
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
7