1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/date/tests/bug33562.phpt
Derick Rethans bf23d8d2b8 - Renamed date_timezone_set/get() to date_default_timezone_set/get().
- Added missing proto's and folding marks.
2005-07-04 21:27:26 +00:00

12 lines
150 B
PHP

--TEST--
Bug #33562 (date("") crashes)
--FILE--
<?php
date_default_timezone_set("GMT");
echo "[", date(""), "]\n";
echo "done";
?>
--EXPECT--
[]
done