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



rest_is_object › WordPress Function

Seit5.5.0
Veraltetn/v
rest_is_object ( $maybe_object )
Parameter:
  • (mixed) $maybe_object The value being evaluated.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if object like, otherwise false.
Definiert in:
Codex:

Determines if a given value is object-like.



Quellcode

function rest_is_object( $maybe_object ) {
	if ( '' === $maybe_object ) {
		return true;
	}

	if ( $maybe_object instanceof stdClass ) {
		return true;
	}

	if ( $maybe_object instanceof JsonSerializable ) {
		$maybe_object = $maybe_object->jsonSerialize();
	}

	return is_array( $maybe_object );
}