$query->condition('fpd.field_purchase_date_value', $get_time, '<');
请问若$get_time是时间戳,而fpd.field_purchase_date_value是时间字符串,我想在此处把fpd.field_purchase_date_value转换成时间戳以便进行比较,请问该怎么写?
我知道mysql的一个函数是unix_timestamp,但是不知道在db_select中如何运用才能生效。
$query->condition('fpd.field_purchase_date_value', $get_time, '<');
请问若$get_time是时间戳,而fpd.field_purchase_date_value是时间字符串,我想在此处把fpd.field_purchase_date_value转换成时间戳以便进行比较,请问该怎么写?
我知道mysql的一个函数是unix_timestamp,但是不知道在db_select中如何运用才能生效。