File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / date / tests / bug13142.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 (12 years, 5 months 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 #13142 (strtotime handling of "M d H:i:s Y" format)
--INI--
date.timezone=US/Eastern
--SKIPIF--
<?php
if (defined('PHP_WINDOWS_VERSION_MAJOR')) {
	die("skip. set TZ env is not supported at runtime.");
}
if (!@putenv("TZ=US/Eastern") || getenv("TZ") != 'US/Eastern') {
	die("skip unable to change TZ enviroment variable\n");
}
?>
--FILE--
<?php

if (date('T') == 'GMT') {
	putenv("TZ=EST5EDT4,M4.1.0,M10.5.0");
}
echo date("r\n", strtotime("Sep 04 16:39:45 2001"));
echo date("r\n", strtotime("Sep 04 2001 16:39:45"));	
?>
--EXPECT--
Tue, 04 Sep 2001 16:39:45 -0400
Tue, 04 Sep 2001 16:39:45 -0400

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>