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,

link|improve this question

feedback

8 Answers

up vote 26 down vote accepted

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|improve this answer
1  
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 '09 at 12:36
Thanks, added your comment and an alternative version to the answer. – schnaader Mar 18 '09 at 12:42
I made a typo: it should be {2,8} sorry about that – Jacco Mar 18 '09 at 14:24
but why would one want to remove those characters? – andi Mar 18 '09 at 22:19
1  
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 '09 at 23:36
show 1 more comment
feedback

Use html_entity_decode to convert HTML entities.

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

link|improve this answer
this is more correctly because when we just replace   with empty string we get incorrect result - all non breakable spaces are collapsed – heximal Mar 30 at 19:09
feedback

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|improve this answer
I want to remove those html special code chars – Prashant Mar 18 '09 at 10:19
this html_entity_decode($a); is doing the tric – 0xFF Mar 18 '09 at 10:27
feedback

In addition to the good answers above, PHP also has a built-in filter function that is quite useful: filter-var.

To remove HMTL characters, use:

$cleanString = filter_var($dirtyString, FILTER_SANITIZE_STRING);

More info:

  1. function.filter-var
  2. filter_sanitize_string
link|improve this answer
w3schools is not a good example website, see w3fools.com – Skuld Feb 16 at 17:52
I know the thread is a little old, but I am looking to solve the same problem... Unfortunately filter_var requires 5.2 or newer...Otherwise this would be the answer (at least to my specific problem). Thanks. – ChronoFish May 14 at 14:55
feedback

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|improve this answer
feedback

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|improve this answer
feedback
<?php
function strip_only($str, $tags, $stripContent = false) {
    $content = '';
    if(!is_array($tags)) {
        $tags = (strpos($str, '>') !== false
                 ? explode('>', str_replace('<', '', $tags))
                 : array($tags));
        if(end($tags) == '') array_pop($tags);
    }
    foreach($tags as $tag) {
        if ($stripContent)
             $content = '(.+</'.$tag.'[^>]*>|)';
         $str = preg_replace('#</?'.$tag.'[^>]*>'.$content.'#is', '', $str);
    }
    return $str;
}

$str = '<font color="red">red</font> text';
$tags = 'font';
$a = strip_only($str, $tags); // red text
$b = strip_only($str, $tags, true); // text
?> 
link|improve this answer
feedback

The function I used to perform the task, joining the upgrade made by schnaader is:

    mysql_real_escape_string(
        preg_replace_callback("/&#?[a-z0-9]+;/i", function($m) { 
            return mb_convert_encoding($m[1], "UTF-8", "HTML-ENTITIES"); 
        }, strip_tags($row['cuerpo'])))

This function removes every html tag and html symbol, converted in UTF-8 ready to save in MySQL

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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