“php si l'URL contient” Réponses codées

php si l'URL contient

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

Si l'URL du navigateur a un domaine dedans en utilisant 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 vérifie si une URL existe

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 Vérifiez si la chaîne contient l'URL

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

Si l'URL a un certain code, alors php

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

Réponses similaires à “php si l'URL contient”

Questions similaires à “php si l'URL contient”

Plus de réponses similaires à “php si l'URL contient” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code