I have a function to grab the current url - found here: http://webcheatsheet.com/php/get_current_page_url.php - and I am trying to look for a string - WordPress category slug - inside of it:
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";}`
The url $pageURL when echoed does have the full url with the pro as part of the url, but bummer is echoed anyways meaning either my if statement is of or that my strstr does not work. What is it?
$pageURLs? – mathematical.coffee Feb 24 '12 at 12:16parse_url@ php.net/manual/en/function.parse-url.php now. Not sure yet how I can use it to check for a specific string and use if else to execute code. – rhand Feb 24 '12 at 12:22$pageURL=curPageURL()anywhere in your code? – Andrei G Feb 24 '12 at 12:28