_wp_iso_convert

函数
_wp_iso_convert ( $match )
Access
Private
参数
  • (array) $match The preg_replace_callback matches array.
    Required:
返回值
  • (string) Converted chars.
定义位置
相关方法
wp_list_sortwp_is_recovery_modewp_list_commentswp_json_encode_wp_cron
引入
3.1.0
弃用
-

_wp_iso_convert: 这个函数将一个字符串从ISO-8859-1编码转换为UTF-8编码。

将十六进制编码的字符转换为ASCII的辅助函数。

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

常见问题

FAQs
查看更多 >