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.
12 lines
210 B
PHP
12 lines
210 B
PHP
--TEST--
|
|
Bug #29595 (Roman number format for months)
|
|
--FILE--
|
|
<?php
|
|
date_default_timezone_set("GMT");
|
|
$from_postgres = '2004-08-09 14:48:27.304809+10';
|
|
|
|
echo strtotime($from_postgres);
|
|
?>
|
|
--EXPECT--
|
|
1092026907
|