fork download
  1. <?php
  2. $fulldate = 'Tue Feb 04 2014 09:30:00 GMT-0800 (Pacific Standard Time)';
  3. $dateString = preg_replace("/\([^)]+\)/","",$fulldate);
  4. $date = new DateTime($dateString);
  5. echo $date->format('Y-m-d H:i:s');
  6. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
2014-02-04 09:30:00