virt2/api/php/antispam.php

14 lines
265 B
PHP
Raw Permalink Normal View History

<?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;
}
}
?>