rest_parse_hex_color( string $color ): string|false

Parses a 3 or 6 digit hex color (with #).

Parameters

$colorstringrequired
3 or 6 digit hex color (with #).

Return

string|false

Source

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

	return $color;
}

Changelog

VersionDescription
5.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.