发布网友 发布时间:2022-04-06 06:50
共1个回答
热心网友 时间:2022-04-06 08:20
function xmlentities( $string, $quote_style = ENT_QUOTES )
{
static $trans;
// remove all html entities before xml encoding
// must convert all quotes to avoid remaining html entity in code
$string = html_entity_decode($string, ENT_QUOTES);
// xml encoding
if ( ! isset( $trans ) )
{
$trans = get_html_translation_table( HTML_ENTITIES, $quote_style );
foreach ( array_keys($trans) as $key )
{
$trans[$key] = '&#'.ord( $key ).';';
}
// dont translate the '&' in case it is part of &xxx;
$trans[chr(38)] = '&';
}
// after the initial translation, _do_ map standalone '&' into '&'
$str_temp = preg_replace( "/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,3};)/u"
, "&"
, strtr( $string, $trans )
);
return $str_temp;
}