“Php si la URL contiene” Código de respuesta

Php si la URL contiene

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

Si la URL del navegador tiene un dominio, verifique con 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 si existe una 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 si la cadena contiene URL

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

Si la URL tiene cierto código, entonces PHP

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

Respuestas similares a “Php si la URL contiene”

Preguntas similares a “Php si la URL contiene”

Más respuestas relacionadas con “Php si la URL contiene” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código