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

php在字符串中查找另一个字符串_php技巧

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

返回列表


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 "未找到!";
  }
}
?>

人气教程排行