comparing date and time php

2020-02-14 09:02发布

i need to compare two dates where if one date is greater than the other then an sql will run. this is my code

date_default_timezone_set('Asia/Kuala_Lumpur');
$date = date('Y-m-d G:i:s');
$query = mysql_query("SELECT * FROM package_transaction");
if(mysql_num_rows($query) > 0) {
    while($row = mysql_fetch_array($query)) {           
        $transac_code = $row['transac_code'];
        $duedate = $row['payment_due'];

        if(strtotime($date) > strtotime($duedate))
        {
            mysql_query("UPDATE package_transaction SET `status` = 'cancelled' WHERE `payment_due` = `$duedate` AND `transac_code` = `$transac_code`");

        }

    }
}

but its not working. please help

标签: php mysql
2条回答
姐就是有狂的资本
2楼-- · 2020-02-14 09:06

try this,

 date("Y-m-d", strtotime($date)) >  date("Y-m-d", strtotime($duedate))
查看更多
Deceive 欺骗
3楼-- · 2020-02-14 09:23

could you try and use the date format before using strtotime

$duedate = $row['payment_due'];
$duedate = $duedate->format('Y-m-d G:i:s');
查看更多
登录 后发表回答