当前位置:Gxlcms > PHP教程 > php在字符串中查找另一个字符串_PHP教程

php在字符串中查找另一个字符串_PHP教程

时间:2021-07-01 10:21:17 帮助过:17人阅读

返回列表


if(isset($string) and isset($query) and $string<>"" and $query<>""){
  if(isset($case)){
    $func = "ereg";
  }
  else{
    $func = "eregi";
  }
  switch($where){
    case "^":
      $query = "^" . $query;
      break;
    case "$":
      $query .= "$";
      break;
  }
  eval("$found = $func("$query","$string");");
  if($found){
    echo "找到!";
  }
  else{
    echo "未找到!";
  }
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/319564.htmlTechArticlea href="./"返回列表/abr form action="?echo $PHP_SELF;?" method="post" 在input type="text" name="string" value="?echo $string;?"中查找input type="text" name="query" value="?e...

人气教程排行