Tôi muốn nhận (và đặt sau) giá trị của bộ sưu tập trường trong bộ sưu tập trường (nội dung trường đa chiều).
Đây là mã của tôi:
// 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');
Có thể thực hiện với API thực thể không?
Ảnh chụp màn hình:
dpm()
một lần nữa, đặc biệt là ở Drupal với sự phụ thuộc nặng nề vào các mảng đa chiều để truyền dữ liệu.