mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fix #62823: datetime.formats.compound regex issue
This commit is contained in:
parent
2b06e6be13
commit
8440ee35c0
1 changed files with 3 additions and 3 deletions
|
@ -508,7 +508,7 @@
|
|||
</row>
|
||||
<row>
|
||||
<entry><literal>ii</literal></entry>
|
||||
<entry>[0-5][0-9]</entry>
|
||||
<entry>[0-5]?[0-9]</entry>
|
||||
<entry>"04", "8", "59"</entry>
|
||||
</row>
|
||||
<row>
|
||||
|
@ -533,8 +533,8 @@
|
|||
</row>
|
||||
<row>
|
||||
<entry><literal>ss</literal></entry>
|
||||
<entry>[0-5][0-9]</entry>
|
||||
<entry>"04", "8", "59"</entry>
|
||||
<entry>([0-5]?[0-9])|60</entry>
|
||||
<entry>"04", "8", "59", "60" (leap second)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>SS</literal></entry>
|
||||
|
|
Loading…
Reference in a new issue