| 
 Posted by macca on 09/16/07 00:48 
I found this on php.net at http://uk2.php.net/strtr which may be of 
some help: 
 
 
 
 
After battling with strtr trying to strip out MS word formatting from 
things pasted into forms I ended up coming up with this.. 
 
it strips ALL non-standard ascii characters, preserving html codes and 
such, but gets rid of all the characters that refuse to show in 
firefox. 
 
If you look at this page in firefox you will see a ton of "question 
mark" characters and so it is not possible to copy and paste those to 
remove them from strings..  (this fixes that issue nicely, though I 
admit it could be done a bit better) 
 
<? 
function fixoutput($str){ 
    $good[] = 9;  #tab 
    $good[] = 10; #nl 
    $good[] = 13; #cr 
    for($a=32;$a<127;$a++){ 
        $good[] = $a; 
    } 
    $len = strlen($str); 
    for($b=0;$b < $len+1; $b++){ 
        if(in_array(ord($str[$b]), $good)){ 
            $newstr .= $str[$b]; 
        }//fi 
    }//rof 
    return $newstr; 
} 
?>
 
[Back to original message] 
 |