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