Home >php教程 >php手册 >正则表达式例子在一个字符串中查找另一个字符串

正则表达式例子在一个字符串中查找另一个字符串

WBOY
WBOYOriginal
2016-06-13 10:26:411078browse



正则表达式

返回列表


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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:正则表达式格式Next article:文件上载支持