From: SVN Migration Date: Tue, 23 Nov 2004 09:40:09 +0000 (+0000) Subject: This commit was manufactured by cvs2svn to create branch 'PHP_5_0'. X-Git-Tag: php-5.0.3RC1~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77c460b59f1d4059d3cacc6ba85e1ca16ab02df8;p=php This commit was manufactured by cvs2svn to create branch 'PHP_5_0'. --- diff --git a/ext/standard/tests/time/bug28599.phpt b/ext/standard/tests/time/bug28599.phpt new file mode 100644 index 0000000000..79ac9c84b1 --- /dev/null +++ b/ext/standard/tests/time/bug28599.phpt @@ -0,0 +1,8 @@ +--TEST-- +Bug #28599 (strtotime fails with zero base time) +--FILE-- + +--EXPECT-- +15-11-2004 16:49:33 diff --git a/tests/lang/bug30862.phpt b/tests/lang/bug30862.phpt new file mode 100644 index 0000000000..12c95d57e8 --- /dev/null +++ b/tests/lang/bug30862.phpt @@ -0,0 +1,30 @@ +--TEST-- +Bug #30862 (Static array with boolean indexes) +--FILE-- +"false", true=>"true"); +} +print_r(T::$a); +?> +---------- +"false", Y=>"true"); +} +print_r(T2::$a); +?> +--EXPECT-- +Array +( + [0] => false + [1] => true +) +---------- +Array +( + [0] => false + [1] => true +)