rest_is_object

函数
rest_is_object ( $maybe_object )
参数
  • (mixed) $maybe_object The value being evaluated.
    Required:
返回值
  • (bool) True if object like, otherwise false.
定义位置
相关方法
rest_sanitize_objectrest_is_booleanget_linkobjectsget_queried_objectget_post_status_object
引入
5.5.0
弃用
-

rest_is_object: 这是一个WordPress的函数,用来检查一个值是否是一个对象。如果该值是一个对象,该函数返回真,否则返回假: 这个函数是用来验证和净化WordPress REST API的输入数据的。

确定一个给定的值是否是类似对象的。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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 );
}
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 ); }
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 );
}

常见问题

FAQs
查看更多 >