【发布时间】:2017-08-23 09:19:09
【问题描述】:
我尝试的是查询两个日期之间创建的订单
所以我有
$maxdate = ; //timestamp value
$mindate = ; //timestamp value
$orders = Orders::find()->where(["created_at" ..]) //stuck hre
正常的话是
find where created_at is between $maxdate and $mindate
我该怎么办?
【问题讨论】: