wp_iso_descrambler

函数
wp_iso_descrambler ( $string )
参数
  • (string) $string Subject line.
    Required:
返回值
  • (string) Converted string to ASCII.
定义位置
相关方法
wp_is_writablewp_is_streamwp_is_mobileis_iterablewin_is_writable
引入
1.2.0
弃用
-

wp_iso_descrambler: 这个函数用来解读WordPress中被扰乱的ISO字符。它接收一个字符串作为参数,并返回解扰后的字符串。

从电子邮件主题转换为ASCII。

function wp_iso_descrambler( $string ) {
	/* this may only work with iso-8859-1, I'm afraid */
	if ( ! preg_match( '#=?(.+)?Q?(.+)?=#i', $string, $matches ) ) {
		return $string;
	} else {
		$subject = str_replace( '_', ' ', $matches[2] );
		return preg_replace_callback( '#=([0-9a-f]{2})#i', '_wp_iso_convert', $subject );
	}
}

常见问题

FAQs
查看更多 >