fork(5) download
  1. <?php
  2.  
  3. $date = "03/31/2015";
  4.  
  5. if (DateTime::createFromFormat('m/d/Y', $date) < new DateTime()) {
  6. echo "$date is in the past\n";
  7. } else {
  8. echo "$date is not in the past\n";
  9. }
  10.  
  11. $date = "06/30/2015";
  12.  
  13. if (DateTime::createFromFormat('m/d/Y', $date) < new DateTime()) {
  14. echo "$date is in the past\n";
  15. } else {
  16. echo "$date is not in the past\n";
  17. }
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
03/31/2015 is in the past
06/30/2015 is not in the past