フィールドコレクション(多次元フィールドコンテンツ)のフィールドコレクションの値を取得(および設定)したい。
これは私のコードです:
// The node is a custom content.
// I get the list of first collections fields.
$temp = field_collection_get($node,'field_top');
// Shows the structure you can see below in the screenshot.
dpm($temp->value()[0]);
// Now, I want to get the value of field_website_informations.
// I've tried several ways but I couldn't find the right way.
// The following line returns an error.
$testage = entity_metadata_wrapper($temp->value()[0], 'field_website_informations');
Entity APIで行うことは可能ですか?
スクリーンショット:
dpm()
特にDrupalでは、データを渡すために多次元配列に大きく依存しているため、二度と振り返ることはありません。