convert_chars

函数
convert_chars ( $content, $deprecated = '' )
参数
  • (string) $content String of characters to be converted.
    Required:
  • (string) $deprecated Not used.
    Required:
    Default: (empty)
返回值
  • (string) Converted string.
定义位置
相关方法
convert_smilieswp_convert_hr_to_bytescomment_classconvert_to_screen_canonical_charset
引入
0.71
弃用
-

convert_chars: 这个函数将字符串中的特殊字符转换为其HTML实体等价物。例如,<符号被转换为<。 将孤独的&字符转换为`&`(又称`&amp;`)。

function convert_chars( $content, $deprecated = ” ) {
	if ( ! empty( $deprecated ) ) {
		_deprecated_argument( __FUNCTION__, ‘0.71’ );
	}

	if ( strpos( $content, ‘&’ ) !== false ) {
		$content = preg_replace( ‘/&([^#])(?![a-z1-4]{1,8};)/i’, ‘&$1’, $content );
	}

	return $content;
}

常见问题

FAQs
查看更多 >