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.
次のphpコードを使用して、オブジェクト内から配列を取得しようとしています。
$abstract = $view->result[0]->nye.abstract;
「。」が原因で、これで構文エラーが発生します。nye.abstract で。とにかくこの問題の周りにありますか?
参考までに、ビューは drupal ビューです
この問題を解決する 2 つの方法:
変数別:
$nye="nye.abstract"; $abstract = $view->result[0]->$nye;
中括弧付き:
$abstract = $view->result[0]->{'nye.abstract'};