mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
bf23d8d2b8
- Added missing proto's and folding marks.
10 lines
221 B
PHP
10 lines
221 B
PHP
--TEST--
|
|
Bug #28599 (strtotime fails with zero base time)
|
|
--FILE--
|
|
<?php
|
|
date_default_timezone_set("Europe/Amsterdam");
|
|
print gmdate("d-m-Y H:i:s", strtotime("+30 minutes", 1100535573));
|
|
?>
|
|
--EXPECT--
|
|
15-11-2004 16:49:33
|