fork download
  1. <?php
  2. $Now = new DateTime('now');
  3. $pScheduledDueDate = '11/27/14';
  4. $DueDate = new DateTime($pScheduledDueDate);
  5.  
  6. var_dump($DueDate <= $Now);
  7. var_dump($DueDate->format('m/d/y'));
  8. var_dump($Now->format('m/d/y'));
  9.  
  10.  
  11.  
Success #stdin #stdout 0.03s 52432KB
stdin
Standard input is empty
stdout
bool(true)
string(8) "11/27/14"
string(8) "01/21/16"