Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: 解析エラー:構文エラー、予期しない'('、予期する'、'、または';'
次のエラーが発生します。
解析エラー:構文エラー、予期しない'。'、予期する'、'、または';' 19行目のxxxで
この行で:
public $metad_name = "lol" . "lol";
このエラーは、式がクラスプロパティで使用できないことを示しています。
class Foo { public $metad_name = ''; function __construct() { $this->metad_name = 'lol' . 'lol'; } }
class Bar { public $metad_name = 'lol' . 'lol'; }
コードがクラスプロパティでない場合は、public
public