try this
<?php
$now = time(); // Current time
$your_date = strtotime("2013-12-01"); // This will parses an English textual datetime into a Unix timestamp
$datediff = abs($now - $your_date);// Gives absolute Value
echo floor($datediff/(60*60*24)); //Returns the lowest value by rounding down value
?>