wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_wp_iso_convert › WordPress Function

Od3.1.0
Przestarzałyn/a
_wp_iso_convert ( $matches )
Dostęp:
  • private
Parametry:
  • (array) $matches The preg_replace_callback matches array.
    Wymagane: Tak
Powrót:
  • (string) Converted chars.
Zdefiniowane na:
Codex:

Helper function to convert hex encoded chars to ASCII.



Źródło

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