LoginSignup
0
1

More than 3 years have passed since last update.

PHP デバッグ

Last updated at Posted at 2019-02-25
error_log(print_r($params, true), 3, "/tmp/debug.log");
echo "<pre>";
var_dump($params);
echo "</pre>";

Xdebugの設定で全文表示されない場合

ini_set('xdebug.var_display_max_children', -1);
ini_set('xdebug.var_display_max_data', -1);
ini_set('xdebug.var_display_max_depth', -1);
var_dump($params);
0
1
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
0
1