mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
bf23d8d2b8
- Added missing proto's and folding marks.
10 lines
191 B
PHP
10 lines
191 B
PHP
--TEST--
|
|
Bug #29585 (Support week numbers in strtotime())
|
|
--FILE--
|
|
<?php
|
|
date_default_timezone_set("GMT");
|
|
echo gmdate("Y-m-d H:i:s", strtotime("2004W30"));
|
|
?>
|
|
--EXPECT--
|
|
2004-07-19 00:00:00
|