1--TEST-- 2Bug #14561 (strtotime() bug) 3--INI-- 4date.timezone=GMT 5--FILE-- 6<?php 7echo strtotime("19:30 Dec 17 2005"), "\n"; 8echo strtotime("Dec 17 19:30 2005"), "\n"; 9?> 10--EXPECT-- 111134847800 121134847800 13