CakePHP3でのDebugKitのON/OFF切替 2018年6月20日 IT関係 PHP /config/bootstrap.php にて、 trueにするとDebugKitをON、 falseにするとDebugKitをOFFにすることができる。 if (Configure::read('debug')) { //Plugin::load('DebugKit', ['bootstrap' => true]); Plugin::load('DebugKit', ['bootstrap' => false]); }