wpseek.com
A WordPress-centric search engine for devs and theme authors
rest_sanitize_object › WordPress Function
Since5.5.0
Deprecatedn/a
› rest_sanitize_object ( $maybe_object )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Converts an object-like value to an array.
Related Functions: rest_sanitize_boolean, rest_is_object, sanitize_user_object, rest_sanitize_array, rest_sanitize_request_arg
Source
function rest_sanitize_object( $maybe_object ) { if ( '' === $maybe_object ) { return array(); } if ( $maybe_object instanceof stdClass ) { return (array) $maybe_object; } if ( $maybe_object instanceof JsonSerializable ) { $maybe_object = $maybe_object->jsonSerialize(); } if ( ! is_array( $maybe_object ) ) { return array(); } return $maybe_object; }