我有这段代码检查mysql时间戳是否为24小时,它适用于一个字符串但是我需要检查两个字符串,但我不知道如何添加它
if(strtotime($dateFrom." + 24 hours") <= strtotime("now"))
例如我想在
中添加字符串if(strtotime($dateFrom **&& $dateTo.**" + 24 hours") <= strtotime("now"))
答案 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"))