我在查询我的数据时遇到了麻烦。我不知道从哪里开始查询 if else 中的 if 条件。
问题是:如何查询它的type = cpm and end_date < now()然后将结果值类型更改为before,如果它的type = cpm and end_date > now()然后将结果值类型更改为after。我在表中有一个数据,结果如下:
我想得到如下结果:
Array(
[0] => Array
(
[id] => 1
[type] => free
[end_date] => 2013-06-20
)
[1] => Array
(
[id] => 4
[type] => after
[end_date] => 2013-08-29
)
[2] => Array
(
[id] => 5
[type] => before
[end_date] => 2013-06-20
)
)
提前致谢。