wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



is_countable › WordPress Function

Seit4.9.6
Veraltetn/v
is_countable ( $value )
Parameter:
  • (mixed) $value The value to check.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if `$value` is countable, false otherwise.
Definiert in:
Codex:

Polyfill for is_countable() function added in PHP 7.3.

Verify that the content of a variable is an array or an object implementing the Countable interface.


Quellcode

function is_countable( $value ) {
		return ( is_array( $value )
			|| $value instanceof Countable
			|| $value instanceof SimpleXMLElement
			|| $value instanceof ResourceBundle
		);
	}
}