author:咔咔

 

preg_match函数是进行正则表达式的匹配,成功返回1,否则返回0

 

参数说明:

参数

说明

pattern

正则表达式

subject

需要匹配检索的对象

matches

可选,存储匹配结果的数组, $matches[0] 将包含与整个模式匹配的文本,$matches[1] 将包含与第一个捕获的括号中的子模式所匹配的文本,以此类推

public function index()
{
if (preg_match("/php/i", "PHP is the web scripting language of choice.", $matches))
{
print "A match was found:" . $matches[0];

}
else
{
print "A match was not found.";
}
}

在这个正则里边有一个参数是i,这个在正则表达式里边是不区分大小写的一个参数 

输出结果:

【PHP】preg_match函数_参数说明