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

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -