PHP – strstr() returns false but the $haystack contains the $needle – Plesk
This is a very strange error, i am trying to fix it without success. I am trying to check if a link contains a string: $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; echo $actual_link; The output is: http://xxx.xxx.xxx.xxx/plesk-site-preview/***********.com/xxx.xxx.xxx.xxx/ Then: if(strstr($actual_link,"plesk-site-preview") ){ echo"<meta name='robots' content='noindex'>";…