3

我需要比较 php/mysql 中的日期和时间,基本上我有一个应用程序和一个服务器,该应用程序需要连接到服务器以检查数据库中的新条目。服务器从此处完成的应用程序接收日期时间作为字符串

SimpleDateFormat dateformat = new SimpleDateFormat("yyyy/mm/dd hh:mm:ss");
Calendar cal = Calendar.getInstance();
String time = dateformat.format(cal.getTime()); 

服务器在这里接收数据

f (isset($_GET["time"]) || isset($_GET["user_id"])) {
$time = $_GET['time'];
$u_id = $_GET['user_id'];
$timestr=date('y-m-d H:i:s',strtotime($time));

$result = mysql_query("SELECT MAX(created_at)from room");
$Max_time = mysql_result($result, $row);
$dbMax_time = date('y-m-d H:i:s',strtotime($Max_time));

并且需要在这里进行比较

if ($dbMax_time> $timestr) {
    $NewRooms = mysql_query("SELECT * From room WHERE created_at> CAST($timestr AS TIME)");
}

我该怎么做我对如何比较感到困惑,请帮我修复它。

4

2 回答 2

9

只需比较两个时间戳就足够了:

$t1 = strtotime($time);
$t2 = strtotime($Max_Time);

if($t1 > $t2) { .. }
于 2013-05-14T08:14:45.430 回答
4

为什么不创建两个 DateTime 对象并比较它们?

喜欢:

$A = new DateTime(); 
$A->setTimestamp(strtotime($time));

$B = new DateTime(); 
$B->setTimestamp(strtotime($Max_Time)); 

if ($A > $B) echo "You use if statements to compare"
于 2013-05-14T08:12:31.193 回答