htmlentities2()
htmlentities2( string $myHTML ) 转换实体,同时保留已编码的实体。Convert…
htmlentities2( string $myHTML )
转换实体,同时保留已编码的实体。
Convert entities, while preserving already-encoded entities.
目录锚点:#参数#返回#源码
参数(Parameters)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
$myHTML | (string) | 必需 | 要转换的文本。 |
返回(Return)
(string)转换文本。
源码(Source)
/** * Convert entities, while preserving already-encoded entities. * * @link http://www.php.net/htmlentities Borrowed from the PHP Manual user notes. * * @since 1.2.2 * * @param string $myHTML The text to be converted. * @return string Converted text. */ 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) ); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
1.2.2 | wp-includes/formatting.php:4410 | 0 | 0 |
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!