抱歉,我对正则表达式有点陌生,无论如何我有一个类似的网址http://example.com/test/folder/?get=ThisisaValue
,我需要它来返回“get”这个词是否在那里。
每当我运行该功能时,我都找不到匹配项?感谢您提供任何帮助。
示例代码,假设$_SERVER['HTTP_REFERER']
是http://example.com/hello/?state=12345
if(preg_match("state", $_SERVER['HTTP_REFERER'])) {
echo "match";
} else {
echo "no match";
}