14 lines
265 B
PHP
14 lines
265 B
PHP
|
<?php
|
||
|
function antispam($txt){
|
||
|
$badwords=array('http', 'sex');
|
||
|
|
||
|
/* ищет str в txt если находит, возвращает единичку */
|
||
|
function findtxt($txt, $str){
|
||
|
$pos1 = stripos($txt, $str);
|
||
|
if ($pos1 === false) return 0;
|
||
|
else
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
?>
|