how i can know how many days between 2 date by php? -
possible duplicates:
how count days between 2 dates in php?
full days between 2 dates in php?
how can know how many days between 2 date ex: want know how many days between 12\02\2011 , 15\03\2011
please me
<?php $datetime1 = date_create('2011-02-12'); $datetime2 = date_create('2012-03-15'); $interval = date_diff($datetime1, $datetime2); echo $interval->format('%r%a days'); ?>
you dates have of 1 of following formats:
php date formats
Comments
Post a Comment