Cakephpの導入
Windowsの開発環境
Apache2.2
PHP5.3
の環境化で、Cakephpを試していたら下記のエラーがでました。
1 |
Deprecated: Assigning the return value of new by reference is deprecated in |
下記のURLで調査したところ、PHP5.3の環境だとでるようです。
http://cakephp.jp/modules/newbb/viewtopic.php?topic_id=1993&forum=3
下記のファイルにif文を追加しました。
「cake/libs/configure.php」
1 2 3 4 5 6 7 8 9 10 11 |
if (isset($config['debug'])) {  if ($_this->debug) {   error_reporting(E_ALL);   <font color="red">この三行追加</font>   if (error_reporting() > 6143) {    error_reporting(E_ALL & ~E_DEPRECATED);   }   <font color="red">ここまで</font>   if (function_exists('ini_set')) {    ini_set('display_errors', 1);   } |