mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
10 lines
186 B
PHP
10 lines
186 B
PHP
--TEST--
|
|
Bug #50680 ("eighth" quantifier is not understood)
|
|
--INI--
|
|
date.timezone=UTC
|
|
--FILE--
|
|
<?php
|
|
var_dump(date("d", strtotime("March 1 eighth day 2009")));
|
|
--EXPECT--
|
|
string(2) "09"
|