virt2/api/php/findtxt.php

9 lines
204 B
PHP
Executable File

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