wpseek.com
A WordPress-centric search engine for devs and theme authors



_wp_iso_convert › WordPress Function

Since3.1.0
Deprecatedn/a
_wp_iso_convert ( $matches )
Access:
  • private
Parameters:
  • (array) $matches The preg_replace_callback matches array.
    Required: Yes
Returns:
  • (string) Converted chars.
Defined at:
Codex:

Helper function to convert hex encoded chars to ASCII.



Source

function _wp_iso_convert( $matches ) {
	return chr( hexdec( strtolower( $matches[1] ) ) );
}