rest_validate_array_contains_unique_items

函数
rest_validate_array_contains_unique_items ( $array )
参数
  • (array) $array The array to check.
    Required:
返回值
  • (bool) True if the array contains unique items, false otherwise.
定义位置
相关方法
rest_validate_array_value_from_schemarest_validate_string_value_from_schemarest_validate_request_argrest_validate_boolean_value_from_schemarest_validate_value_from_schema
引入
5.5.0
弃用
-

rest_validate_array_contains_unique_items: 这是一个WordPress的函数,验证一个数组是否只包含唯一的值: 该函数接受一个数组参数,如果数组中的任何值不是唯一的,则返回一个错误信息。

检查一个数组是否是由唯一的项组成的。

function rest_validate_array_contains_unique_items( $array ) {
	$seen = array();

	foreach ( $array as $item ) {
		$stabilized = rest_stabilize_value( $item );
		$key        = serialize( $stabilized );

		if ( ! isset( $seen[ $key ] ) ) {
			$seen[ $key ] = true;

			continue;
		}

		return false;
	}

	return true;
}

常见问题

FAQs
查看更多 >