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.
静的変数を動的に取得するにはどうすればよいですか?
私はこれを試していますが、恐ろしいPAAMAYIMエラーが発生します:
foreach($this->entity::$dialog_data as $property) {
文字列が含まれているCompany::$dialog_dataため、結果はになります。$this->entity'Company'
Company::$dialog_data
$this->entity
'Company'
多分それはあなたを助ける
$temp = $this->entity; foreach($temp::$dialog_data as $property) {