Wort Zensur
Mit diesem Script können Sie in Gästebüchern oder in
Foren bestimmte Wörter zensieren
|
Script: |
<?php
$zens =
array('Hure',
'Votze',
'bla');
function zens($text)
{
global $zens;
foreach($zenss
as $b)
{
$r
= $b[0].str_repeat("*",
strlen($b)-2).$b[strlen($b)-1];
if(function_exists("str_ireplace"))
{
$text
= str_ireplace($b,
$r,
$text);
}
else
{
$text
= str_replace($b,
$r,
$text);
}
}
return $text;
}
$text =
"Hure Votze bla";
?>
<?php echo
zens($text);
?>
|
|