rest_parse_hex_color

函数
rest_parse_hex_color ( $color )
参数
  • (string) $color 3 or 6 digit hex color (with #).
    Required:
返回值
  • (string|false)
定义位置
相关方法
rest_parse_datesanitize_hex_colorrest_parse_embed_paramwp_parse_auth_cookiemaybe_hash_hex_color
引入
5.4.0
弃用
-

rest_parse_hex_color: 这是一个WordPress的函数,解析十六进制的颜色代码并返回一个RGB颜色值: 该函数接收一个十六进制的颜色代码并返回相应的RGB颜色值: 这个函数用来解析传递给WordPress REST API的颜色代码。

解析一个3位或6位的十六进制颜色(带#)。

function rest_parse_hex_color( $color ) {
	$regex = '|^#([A-Fa-f0-9]{3}){1,2}$|';
	if ( ! preg_match( $regex, $color, $matches ) ) {
		return false;
	}

	return $color;
}

常见问题

FAQs
查看更多 >