Function URL
https://www.php.net/manual/en/function.array-combine.php
PHP Version
8.3
Safe Version
3.0.2
Description
Returning array|false on thecodingmachine/safe does not make sense to me.
|
* @return array|false Returns the combined array. |
array_combine on PHP 8.1 types @return array:
|
* @return array Returns the combined array, FALSE if the number of elements |
Looks like this is happening since 8.2.
Starting with 8.2 this method is just a wrapper to PHP's array_combine. Is it still safe to use this lib's array_combine on 8.2+?
Function URL
https://www.php.net/manual/en/function.array-combine.php
PHP Version
8.3
Safe Version
3.0.2
Description
Returning
array|falseonthecodingmachine/safedoes not make sense to me.safe/generated/8.3/array.php
Line 15 in 6deb259
array_combineon PHP 8.1 types@return array:safe/generated/8.1/array.php
Line 15 in 6deb259
Looks like this is happening since 8.2.
Starting with 8.2 this method is just a wrapper to PHP's
array_combine. Is it still safe to use this lib'sarray_combineon 8.2+?