fork download
  1. <?php
  2.  
  3. $date = new \DateTime('2014-02-27 15:03:00');
  4.  
  5. echo $date->format("r");
  6.  
  7. $date = '2014-02-27 15:03:00';
  8.  
  9. echo date("r", strtotime($date));
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
Thu, 27 Feb 2014 15:03:00 +0000Thu, 27 Feb 2014 15:03:00 +0000