_validate_cache_id

函数
_validate_cache_id ( $object_id )
参数
  • (mixed) $object_id The cache ID to validate.
    Required:
返回值
  • (bool) Whether the given $object_id is a valid cache ID.
定义位置
相关方法
validate_emailwp_validate_auth_cookievalidate_active_pluginswp_validate_site_datavalidate_file
引入
6.3.0
弃用
-

检查给定的缓存 ID 是否为整数或类整数字符串。

`16` 和 `”16″` 被视为有效,其他数字类型和数字字符串(`16.3` 和 `”16.3″`)被视为无效。

function _validate_cache_id( $object_id ) {
	/*
	 * filter_var() could be used here, but the `filter` PHP extension
	 * is considered optional and may not be available.
	 */
	if ( is_int( $object_id )
		|| ( is_string( $object_id ) && (string) (int) $object_id === $object_id ) ) {
		return true;
	}

	/* translators: %s: The type of the given object ID. */
	$message = sprintf( __( 'Object ID must be an integer, %s given.' ), gettype( $object_id ) );
	_doing_it_wrong( '_get_non_cached_ids', $message, '6.3.0' );

	return false;
}

常见问题

FAQs
查看更多 >