“PHP se o URL contiver” Respostas de código

PHP se o URL contiver

if(strpos($_SERVER['REQUEST_URI'], "string")) {
  ...
}
RedBredren

Se o URL do navegador estiver tendo domínio na verificação usando 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.';
}
Ankur

PHP Verifique se existe um URL

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;
        }
    }
Mizhar Raja

PHP Verifique se a string contém URL

preg_match('/(http|ftp|mailto)/', $string, $matches);
var_dump($matches);
Tiago F2

Se o URL tiver um certo código, então PHP

if (strpos($_SERVER['REQUEST_URI'], "url word") !== false){
// code
}
Deni

Respostas semelhantes a “PHP se o URL contiver”

Perguntas semelhantes a “PHP se o URL contiver”

Mais respostas relacionadas para “PHP se o URL contiver” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código