Answers for "php if url contains"

PHP
2

php if url contains

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

if url has certain code then php

if (strpos($_SERVER['REQUEST_URI'], "url word") !== false){
// code
}
Posted by: Guest on January-31-2021
1

php check if string contains url

preg_match('/(http|ftp|mailto)/', $string, $matches);
var_dump($matches);
Posted by: Guest on August-28-2020
0

php check if a url exists

function urlExists($url=NULL)
    {
        if($url == NULL) return false;
        $ch = curl_init($url);
        curl_setopt($ch, CURLOPT_TIMEOUT, 5);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        $data = curl_exec($ch);
        $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        curl_close($ch); 
        if($httpcode>=200 && $httpcode<300){
            return true;
        } else {
            return false;
        }
    }
Posted by: Guest on September-05-2021
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