wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



_wp_iso_convert › WordPress Function

Depuis3.1.0
Dépréciéen/a
_wp_iso_convert ( $matches )
Accès:
  • private
Paramètres:
  • (array) $matches The preg_replace_callback matches array.
    Requis: Oui
Retourne:
  • (string) Converted chars.
Défini(e) dans:
Codex:

Helper function to convert hex encoded chars to ASCII.



Source

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