字符串我有一個函數來獲取當前網址 - 在這裏找到:http://webcheatsheet.com/php/get_current_page_url.php - 和我試圖尋找一個字符串 - WordPress的類別塞 - 它裏面:試圖抓住從URL
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
//echo $pageURL;
if (strstr($pageURL, 'pro'))
{
echo "cool!";}
else {echo "bummer";}`
的url $ pageURL當回聲確實有url作爲URL的一部分的完整的url,但無論如何無論如何無論如何意味着無聲的意思是說我的if語句是或我的strstr
不起作用。它是什麼?
使用parse_url( $ url)在你的php文件中從URL中獲取正確的字段,你可以達到所需的結果。 – 2012-02-24 12:14:08
你能給我們一些'$ pageURL'的例子嗎? – 2012-02-24 12:16:39
立即閱讀'parse_url' @ http://php.net/manual/en/function.parse-url.php。還不確定如何使用它來檢查特定的字符串,並使用它來執行代碼。 – rhand 2012-02-24 12:22:23