File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
ext /
date /
tests /
bug33578.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue Feb 21 23:47:53 2012 UTC (13 years, 1 month ago) by
misho
Branches:
php,
MAIN
CVS tags:
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
v5_3_10,
HEAD
php
--TEST--
Bug #33578 (strtotime() doesn't parse "11 Oct" format")
--FILE--
<?php
date_default_timezone_set("UTC");
echo date('m/d/Y', strtotime('Oct 11')), "\n";
echo date('m/d/Y', strtotime('11 Oct')), "\n";
echo date('m/d/Y', strtotime('11 Oct 2005')), "\n";
echo date('m/d/Y', strtotime('Oct11')), "\n";
echo date('m/d/Y', strtotime('11Oct')), "\n";
echo date('m/d/Y', strtotime('11Oct 2005')), "\n";
echo date('m/d/Y', strtotime('11Oct2005')), "\n";
?>
--EXPECTF--
10/11/%d
10/11/%d
10/11/2005
10/11/%d
10/11/%d
10/11/2005
10/11/2005
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>