wpseek.com
WordPress开发者和主题制作者的搜索引擎



_wp_iso_convert › WordPress Function

Since3.1.0
已弃用n/a
_wp_iso_convert ( $matches )
访问:
  • private
参数:
  • (array) $matches The preg_replace_callback matches array.
    Required: Yes
返回:
  • (string) Converted chars.
定义在:
文档:

Helper function to convert hex encoded chars to ASCII.



源码

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