bug33056.phpt 285 B

12345678910111213
  1. --TEST--
  2. Bug #33056 (strtotime() does not parse 20050518t090000Z)
  3. --FILE--
  4. <?php
  5. date_default_timezone_set("GMT");
  6. echo strtotime('20050518t090000Z')."\n";
  7. echo strtotime('20050518t091234Z')."\n";
  8. echo strtotime('20050518t191234Z')."\n";
  9. ?>
  10. --EXPECT--
  11. 1116406800
  12. 1116407554
  13. 1116443554