config.local.phpにデバッグモードを有効にする定数を定義する方法がある。
config.local.php
define('DEBUG_MODE', true);
また、URLに、?debug
パラメータをつけても、デバッグモードになる。
また、var_dump
的なものとして、fn_print_r
がデバッグに使うことができる。
Go to list of users who liked
More than 5 years have passed since last update.
config.local.phpにデバッグモードを有効にする定数を定義する方法がある。
define('DEBUG_MODE', true);
また、URLに、?debug
パラメータをつけても、デバッグモードになる。
また、var_dump
的なものとして、fn_print_r
がデバッグに使うことができる。
Register as a new user and use Qiita more conveniently
Go to list of users who liked