General: Introduce a polyfill for is_iterable() function added in PHP 7.1.
Props jrf, schlessera, desrosj. See #43619. Built from https://develop.svn.wordpress.org/trunk@43036 git-svn-id: http://core.svn.wordpress.org/trunk@42865 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -511,7 +511,7 @@ if ( ! function_exists( 'is_countable' ) ) {
|
||||
* Polyfill for is_countable() function added in PHP 7.3.
|
||||
*
|
||||
* Verify that the content of a variable is an array or an object
|
||||
* implementing Countable.
|
||||
* implementing the Countable interface.
|
||||
*
|
||||
* @since 4.9.6
|
||||
*
|
||||
@@ -523,3 +523,21 @@ if ( ! function_exists( 'is_countable' ) ) {
|
||||
return ( is_array( $var ) || $var instanceof Countable );
|
||||
}
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'is_iterable' ) ) {
|
||||
/**
|
||||
* Polyfill for is_iterable() function added in PHP 7.1.
|
||||
*
|
||||
* Verify that the content of a variable is an array or an object
|
||||
* implementing the Traversable interface.
|
||||
*
|
||||
* @since 4.9.6
|
||||
*
|
||||
* @param mixed $var The value to check.
|
||||
*
|
||||
* @return bool True if `$var` is iterable, false otherwise.
|
||||
*/
|
||||
function is_iterable( $var ) {
|
||||
return ( is_array( $var ) || $var instanceof Traversable );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user