#
bb652369 |
| 30-Mar-2020 |
Nikita Popov |
mb_convert_variables(): Make $from an array|string argument |
#
0d244227 |
| 30-Mar-2020 |
Nikita Popov |
mb_convert_encoding(): Make $input a proper array|string arg |
#
f24f6cba |
| 30-Mar-2020 |
Nikita Popov |
mb_convert_encoding(): Make $from_encodings a proper array|string arg Switching to FastZPP, as we don't support this in normal zpp. |
Revision tags: php-7.3.18, php-7.3.16, php-7.3.16RC1 |
|
#
7d0102df |
| 17-Feb-2020 |
Christoph M. Becker |
Revert "Replace @param annotations with type declarations" This reverts commit c31029f335ca1b453af799805c43c37e959ad555. |
#
c31029f3 |
| 16-Feb-2020 |
Christoph M. Becker |
Replace @param annotations with type declarations |
Revision tags: php-7.3.15RC1, php-7.3.15, php-7.3.14, php-7.3.14RC1, php-7.3.13, php-7.3.13RC1, php-7.2.26RC1, php-7.4.0, php-7.2.25, php-7.3.12, php-7.4.0RC6 |
|
#
27e83d0f |
| 08-Nov-2019 |
Máté Kocsis |
Add union return types for function stubs |
Revision tags: php-7.3.12RC1, php-7.2.25RC1, php-7.4.0RC5, php-7.1.33, php-7.2.24, php-7.3.11, php-7.4.0RC4, php-7.3.11RC1, php-7.2.24RC1 |
|
#
e2100619 |
| 07-Oct-2019 |
Christoph M. Becker |
Expect appropriate parameter type in the first place `mb_encode_numericentity()` and `mb_decode_numericentity()` accepted arbitrary zvals as `$convmap`, but ignored anything else than ar
Expect appropriate parameter type in the first place `mb_encode_numericentity()` and `mb_decode_numericentity()` accepted arbitrary zvals as `$convmap`, but ignored anything else than arrays. This appears to be an unresolved relict of their ZPP conversion for PHP 5.3[1]. We now expect an array in the first place. We also expect `count($convmap)` to be a multiple of four (else we throw a `ValueError`), and do no longer special case empty `$convmap`. [1] <http://git.php.net/?p=php-src.git;a=commit;h=1c77f594294aee9d60e7309279c616c01c39ba9d>
show more ...
|
#
0a47096c |
| 06-Oct-2019 |
Christoph M. Becker |
Add MBString arginfo stubs |