简体   繁体   中英

How to find out the number of days between two dates

i am trying to get number of days between two given dates, but while trying this way its not giving the number of days.

$pur_dt = date_create('2015-08-03');

$todate = date_create(date('Y-m-d'));

$diff = date_diff($todate,$pur_dt);
print_r($diff);
echo $diff->format('%R%a days');
if($diff>15) //checking condition if $pur_dt - $todate > 15
{
    echo 'Hello you are not eligible';
}
else
{
    echo 'eligible';
}

its not working, not giving the number of days between given two dates.

Try this. It is very simple.

   <?php

     $date1 = strtotime("2015-11-16 10:01:13");
     $date2 = strtotime("2015-05-06 09:47:16");
     $datediff = $date1 - $date2;
     echo floor($datediff/(60*60*24))." days"; //output 194 days

    ?>

使用DateTime类更好,你可以在PHP手册中看到评论(9),因为它回答了你的问题

Try this,

    $pur_dt = date_create('2015-08-03');
    $todate = date_create(date('Y-m-d'));
    $datediff = $pur_dt - $todate;
    $diff = $datediff/(60*60*24);
    if($diff>15) //checking condition if $pur_dt - $todate > 15
     {
       echo 'Hello you are not eligible';
     }
    else
     {
       echo 'eligible';
     }

Try This :

$pur_dt = Date('2015-08-03');

$todate = Date(date('Y-m-d'));


$pur_dt = strtotime($pur_dt);
$todate = strtotime($todate);

$seconds_diff = $todate - $pur_dt;

$$diff = floor($seconds_diff/(60*60*24));

if($diff>15) //checking condition if $pur_dt - $todate > 15
{
    echo 'Hello you are not eligible';
}
else
{
    echo 'eligible';
}

Try this

$pur_dt = date_create('2015-08-03');

$todate = date_create(date('Y-m-d'));

$diff = date_diff($todate,$pur_dt);
print_r($diff);
echo $diff->format('%R%a days');
if($diff->days>15) //checking condition if $pur_dt - $todate > 15
{
    echo 'Hello you are not eligible';
}
else
{
    echo 'eligible';
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM