xref: /PHP-8.1/ext/date/tests/bug50680.phpt (revision 7aacc705)
1--TEST--
2Bug #50680 ("eighth" quantifier is not understood)
3--INI--
4date.timezone=UTC
5--FILE--
6<?php
7var_dump(date("d", strtotime("March 1 eighth day 2009")));
8?>
9--EXPECT--
10string(2) "09"
11