fork download
  1. <?php
  2.  
  3. $dateString = 'Thu, 26 Dec 2013 17:53:05 +0100';
  4. $date = DateTime::createFromFormat(
  5. DateTime::RSS,
  6. $dateString,
  7. new DateTimeZone('UTC')
  8. );
  9.  
  10. echo $date->getTimestamp().PHP_EOL
  11. .$date->format('r').PHP_EOL;
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
1388076785
Thu, 26 Dec 2013 17:53:05 +0100