htmlentities2

函数
htmlentities2 ( $myHTML )
参数
  • (string) $myHTML The text to be converted.
    Required:
返回值
  • (string) Converted text.
定义位置
相关方法
wp_htmledit_precomment_timeget_comment_timeget_sitesthe_title
引入
1.2.2
弃用
-

htmlentities2 – 这是一个PHP函数,将特殊字符转换为相应的HTML实体。HTML实体是用于在HTML和XML文档中表示特殊字符的代码,如引号、安培号和重音。htmlentities2函数类似于内置的htmlentities函数,但它也可以转换标准ASCII字符集所不能识别的字符。

转换实体,同时保留已经编码的实体。

function htmlentities2( $myHTML ) {
	$translation_table              = get_html_translation_table( HTML_ENTITIES, ENT_QUOTES );
	$translation_table[ chr( 38 ) ] = '&';
	return preg_replace( '/&(?![A-Za-z]{0,4}w{2,3};|#[0-9]{2,3};)/', '&', strtr( $myHTML, $translation_table ) );
}

常见问题

FAQs
查看更多 >