config.local.phpにデバッグモードを有効にする定数を定義する方法がある。
config.local.php
define('DEBUG_MODE', true);
また、URLに、?debugパラメータをつけても、デバッグモードになる。
また、var_dump的なものとして、fn_print_rがデバッグに使うことができる。
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
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