1--TEST-- 2Bug #33056 (strtotime() does not parse 20050518t090000Z) 3--FILE-- 4<?php 5date_default_timezone_set("GMT"); 6echo strtotime('20050518t090000Z')."\n"; 7echo strtotime('20050518t091234Z')."\n"; 8echo strtotime('20050518t191234Z')."\n"; 9?> 10--EXPECT-- 111116406800 121116407554 131116443554 14