Definition:
function _wp_kses_decode_entities_chr_hexdec( $match ) {}
Regex callback for wp_kses_decode_entities()
Parameters
- array $match: preg match
Source code
function _wp_kses_decode_entities_chr_hexdec( $match ) { return chr( hexdec( $match[1] ) ); }
4399
No comments yet... Be the first to leave a reply!