Answers for "php check if url is in local"

PHP
3

php if url contains

if(strpos($_SERVER['REQUEST_URI'], "string")) {
  ...
}
Posted by: Guest on November-18-2020
1

if browser url is having domain in it check using php

$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];

if (!strpos($url,'mysql')) {
echo 'No mysql.'; //swapped with other echo statement
} else {
echo 'Mysql exists.';
}
Posted by: Guest on December-04-2020

Browse Popular Code Answers by Language