Helper function to convert hex encoded chars to ASCII.
Parameters
$matchesarrayrequired- The preg_replace_callback matches array.
Source
function _wp_iso_convert( $matches ) {
return chr( hexdec( strtolower( $matches[1] ) ) );
}
Changelog
| Version | Description |
|---|---|
| 3.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.