在strtotime检查多个字符串

时间:2012-02-02 20:16:29

标签: php strtotime

我有这段代码检查mysql时间戳是否为24小时,它适用于一个字符串但是我需要检查两个字符串,但我不知道如何添加它

if(strtotime($dateFrom." + 24 hours") <= strtotime("now"))

例如我想在

中添加字符串
if(strtotime($dateFrom **&& $dateTo.**" + 24 hours") <= strtotime("now"))

2 个答案:

答案 0 :(得分:1)

    if(strtotime($dateFrom." + 24 hours") <= strtotime("now") && 
       strtotime($dateTo." + 24 hours") <= strtotime("now"))

答案 1 :(得分:0)

if( strtotime($dateFrom + "24 hours") <= strtotime("now") &&
    strtotime($dateTo + "24 hours")   <= strtotime("now"))

OR

if( strtotime($dateFrom + "24 hours") <= strtotime("now") ||
    strtotime($dateTo + "24 hours")   <= strtotime("now"))