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