vote up 1 vote down star

I am creating a rss feed file for my application in which I want to remove HTML tags, which is done by strip_tags But strip_tags is not removing html special code chars

  & © etc

Please tell me any function using which I can remove these special code chars from my string,

Thanks

flag

78% accept rate

5 Answers

vote up 7 vote down check

Either decode them using html_entity_decode or remove them using preg_replace:

$Content = preg_replace("/&#?[a-z0-9]+;/i","",$Content);

(From here)

EDIT: Alternative according to Jacco's comment

might be nice to replace the '+' with '{2,8] or something. This will limit the chance of replacing entire sentences when an unencoded '&' is present.

$Content = preg_replace("/&#?[a-z0-9]{2,8};/i","",$Content);
link|flag
might be nice to replace the '+' with '{2,8] or something. This will limit the chance of replacing entire sentences when an unencoded '&' is present. – Jacco Mar 18 at 12:36
Thanks, added your comment and an alternative version to the answer. – schnaader Mar 18 at 12:42
I made a typo: it should be {2,8} sorry about that – Jacco Mar 18 at 14:24
but why would one want to remove those characters? – andi Mar 18 at 22:19
Those character-entities are not valid in RSS/Atom/XML. so you can do 2 thing: remove them, or replace them with their number-equivalent. – Jacco Mar 18 at 23:36
show 1 more comment
vote up 4 vote down

Use html_entity_decode to convert HTML entities.

You'll need to set charset to make it work correctly.

link|flag
vote up 2 vote down

You may want take a look at htmlentities() and html_entity_decode() here

$orig = "I'll \"walk\" the <b>dog</b> now";

$a = htmlentities($orig);

$b = html_entity_decode($a);

echo $a; // I'll &quot;walk&quot; the &lt;b&gt;dog&lt;/b&gt; now

echo $b; // I'll "walk" the <b>dog</b> now
link|flag
I want to remove those html special code chars – Prashant Mar 18 at 10:19
this html_entity_decode($a); is doing the tric – martani_net Mar 18 at 10:27
vote up 1 vote down

A plain vanilla strings way to do it without engaging the preg regex engine:

function remEntities($str) {
  if(substr_count($str, '&') && substr_count($str, ';')) {
    // Find amper
    $amp_pos = strpos($str, '&');
    //Find the ;
    $semi_pos = strpos($str, ';');
    // Only if the ; is after the &
    if($semi_pos > $amp_pos) {
      //is a HTML entity, try to remove
      $tmp = substr($str, 0, $amp_pos);
      $tmp = $tmp. substr($str, $semi_pos + 1, strlen($str));
      $str = $tmp;
      //Has another entity in it?
      if(substr_count($str, '&') && substr_count($str, ';'))
        $str = remEntities($tmp);
    }
  }
  return $str;
}
link|flag
vote up 1 vote down

It looks like what you really want is:

function xmlEntities($string) {
    $translationTable = get_html_translation_table(HTML_ENTITIES, ENT_QUOTES);

    foreach ($translationTable as $char => $entity) {
        $from[] = $entity;
        $to[] = '&#'.ord($char).';';
    }
    return str_replace($from, $to, $string);
}

It replaces the named-entities with their number-equivalent.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.