我需要将数据添加到 drupal 7 中的日期时间字段。我正在尝试使用
$node->field_test_a_updated[0]['value'] = $val;
$node->field_test_a_updated[0]['delta'] = 0;
$node->field_test_a_updated[0]['timezone'] = 'UTC';
$node->field_test_a_updated[0]['timezone_db'] = 'UTC';
$node->field_test_a_updated[0]['date_type'] = 'datetime';
其中 $val 的值为“2010-06-15T00:00:00-00:00”。
当我尝试导入内容时,附加到节点的所有其他字段都会正确迁移,日期字段除外。我也尝试使用 [LANGUAGE_NONE] 选项。
我确定我错过了与 drupal7 字段 api 相关的内容。
请帮忙。