开发者

PHP: Date larger than current date

开发者 https://www.devze.com 2023-02-12 11:43 出处:网络
I have this code: $curdate = \'22-02-2011\'; $mydate = \'10-10-2011\'; if($curdate > $mydate) { 开发者_Go百科echo \'<span class=\"status expired\">Expired</span>\';

I have this code:

$curdate = '22-02-2011';

$mydate = '10-10-2011';                     

if($curdate > $mydate)
{
开发者_Go百科    echo '<span class="status expired">Expired</span>';
}

This would echo expired BUT shouldn't because $mydate is in the future and therefore smaller than the $curdate but PHP is looking at JUST the first two numbers 22 and 10 instead of the whole string. How can I fix this?

Thanks


Try converting them both to timestamps first, and then compare two converted value:

$curdate=strtotime('22-02-2011');
$mydate=strtotime('10-10-2011');

if($curdate > $mydate)
{
    echo '<span class="status expired">Expired</span>';
}

This converts them to the number of seconds since January 1, 1970, so your comparison should work.


The problem is that your current variables are strings, and not time variables.

Try this out:

$curdate = strtotime('22-02-2011');

$mydate = strtotime('10-10-2011');  


$row_date = strtotime($the_date);
$today = strtotime(date('Y-m-d'));

if($row_date >= $today){
     -----
}


$currentDate = date('Y-m-d');

$currentDate = date('Y-m-d', strtotime($currentDate));

$startDate = date('Y-m-d', strtotime("01/09/2019"));

$endDate = date('Y-m-d', strtotime("01/10/2022"));

if (($currentDate >= $startDate) && ($currentDate <= $endDate)) {

    echo "Current date is between two dates";

} else {

    echo "Current date is not between two dates";  
}


Use the PHP date/time classes to convert these string representations into something you can directly compare using getTimestamp() to compare the UNIX times.

If you're sure all your dates are in this format, you can string slice them into YYYY-MM-DD, and a string comparison will function correctly then.


if(strtotime($curdate) > strtotime($mydate))
{
...
}


it's VERY simple

$curdate = '2011-02-22';
$mydate = '2011-10-10';                     

if($curdate > $mydate)
{
    echo '<span class="status expired">Expired</span>';
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号