php 如何过滤掉xml中的特殊字符

发布网友 发布时间: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;
  }

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com