diff options
author | Derick Rethans <derick@php.net> | 2005-12-19 12:57:49 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2005-12-19 12:57:49 +0000 |
commit | 1394b48d21be3fdc907c28cb450acb8c2b688b65 (patch) | |
tree | 2ca372f2b560730d0a9b218c8ba0c035ea346b6d /ext/date/tests/strtotime.phpt | |
parent | 64b7ec36f3e9e70d6dc421d95503c105ac3b23db (diff) | |
download | php-git-1394b48d21be3fdc907c28cb450acb8c2b688b65.tar.gz |
- Reintroduced the normal constants.
- Made the test cases work with the normal non-class constants.
- Merged new timelib, which is a bit more cleverer
- Support "UTC" in strtotime() properly.
- Added astro code, which is going to form the base for the new sunfuncs.
Diffstat (limited to 'ext/date/tests/strtotime.phpt')
-rw-r--r-- | ext/date/tests/strtotime.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/tests/strtotime.phpt b/ext/date/tests/strtotime.phpt index e8eea399d2..6560d7f1fd 100644 --- a/ext/date/tests/strtotime.phpt +++ b/ext/date/tests/strtotime.phpt @@ -8,7 +8,7 @@ $d[] = strtotime("2005-07-14 22:30:41"); $d[] = strtotime("2005-07-14 22:30:41 GMT"); foreach($d as $date) { - echo date(date::ISO8601, $date), "\n"; + echo date(DATE_ISO8601, $date), "\n"; } ?> --EXPECT-- |