wp_is_uuid

函数
wp_is_uuid ( $uuid, $version = null )
参数
  • (mixed) $uuid UUID to check.
    Required:
  • (int) $version Specify which version of UUID to check against. Default is none, to accept any UUID version. Otherwise, only version allowed is `4`.
    Required:
    Default: null
返回值
  • (bool) The string is a valid UUID or false on failure.
定义位置
相关方法
wp_list_widgetswp_unique_idwp_is_mobilewp_admin_css_uriwp_list_pluck
引入
4.9.0
弃用
-

wp_is_uuid: 这个函数用来检查一个给定的字符串是否是一个有效的UUID(通用唯一标识符)。它接受一个字符串作为参数,如果该字符串是一个有效的UUID,则返回true,否则返回false。

验证一个UUID是否有效。

function wp_is_uuid( $uuid, $version = null ) {

	if ( ! is_string( $uuid ) ) {
		return false;
	}

	if ( is_numeric( $version ) ) {
		if ( 4 !== (int) $version ) {
			_doing_it_wrong( __FUNCTION__, __( 'Only UUID V4 is supported at this time.' ), '4.9.0' );
			return false;
		}
		$regex = '/^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/';
	} else {
		$regex = '/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/';
	}

	return (bool) preg_match( $regex, $uuid );
}

常见问题

FAQs
查看更多 >