エラー発生
状態:-
閲覧数:2,146
投稿日:2016-03-13
更新日:2016-03-13
Parse error: syntax error, unexpected 'new' (T_NEW) in /index.php on line 26
エラー原因
PHP7
・新しいオブジェクトを参照渡しで代入できない
・new 文の結果を参照渡しで変数に代入することができなくなった
<?php
class C {}
$c =& new C;
?>
・下位互換性のない変更点
エラー対応
対応例
//$rss =& new XML_RSS("http://feeds.feedburner.com/hatena/b/hotentry");
$rss =new XML_RSS("http://feeds.feedburner.com/hatena/b/hotentry");