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:
parent
5813ccec07
commit
94cbb2a3f6
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-43034';
|
||||
$wp_version = '5.0-alpha-43036';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue