0
$query = new EntityFieldQuery();
$query->entityCondition('entity_type', 'node')
->entityCondition('bundle', 'exclusion_lists');                 
$entity_type = 'node';
$result = $query->execute();

if (!empty($result[$entity_type])) {
$entities = entity_load($entity_type, array_keys($result[$entity_type]));
}

var_dump($entities->field_first_name);

概念:本质上,我获取一个 CSV 文件,上传它,将内容读取到一个数组中,从 exclude_lists 内容类型中获取所有名字和姓氏,然后对其进行清理。我似乎无法从 $entities 变量中得到任何东西。我敢肯定这只是睡眠不足,等等,但我似乎无法弄清楚这一点。

4

1 回答 1

0

相反,您可以var_dump($entities)通过变量查看数组的结构。那么可能您需要使用field_get_items来获取特定字段的值。

于 2012-12-20T22:38:52.547 回答