wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



_wp_iso_convert › WordPress Function

Da3.1.0
Deprecaton/a
_wp_iso_convert ( $matches )
Accedi:
  • private
Parametri:
  • (array) $matches The preg_replace_callback matches array.
    Richiesto:
Ritorna:
  • (string) Converted chars.
Definito a:
Codex:

Helper function to convert hex encoded chars to ASCII.



Sorgenti

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