wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_wp_iso_convert › WordPress Function

Seit3.1.0
Veraltetn/v
_wp_iso_convert ( $matches )
Zugriff:
  • private
Parameter:
  • (array) $matches The preg_replace_callback matches array.
    Erforderlich: Ja
Gibt zurück:
  • (string) Converted chars.
Definiert in:
Codex:

Helper function to convert hex encoded chars to ASCII.



Quellcode

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