我需要选择具有特定日期的实体。
以下内容应如何格式化。我是否需要解析2010年5月15日
还有我如何得到错误页面。
function events2() {
$query = new EntityFieldQuery();
$query
->entityCondition('entity_type', 'node', '=')
->propertyCondition('status', 1, '=')
->propertyCondition('type', 'event')
->propertyCondition('field_event_date', '15-May-2010', '=');
$result = $query->execute();
return $result;
}
1
由于我们不知道field_event_date的字段类型,因此无法按现状回答。