我想检查网址,看它是否包含某个值。如果是,请运行代码。以下是我的网址的样子。
www.url.com/test/stats.php?player=neo
www.url.com/test/stats.php?player=morpheus
www.url.com/test/stats.php?player=anderson
$userName = $_GET['player'];
我想做点什么
if ( urlheader contains $userName ) {
//run some code
}
答案 0 :(得分:0)
我认为你要做的就是这个。但是,它不适用于$_POST
if($_GET['player']){
$username = $_GET['player']
//Do your stuff with $username here
}
答案 1 :(得分:0)
尝试以下内容
$userName = $_GET['player'];
if (strpos($url,$userName) !== false) {
//your scripts
}
或
$userName = $_GET['player'];
if($userName == 'Your checking value')
{
//your scripts
}