“Php verifique si existe el enlace” Código de respuesta

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 existe el enlace

function check_link_existency($url) {

  // Use get_headers() function
    $headers = @get_headers($url);

    // Use condition to check the existence of URL
    if ($headers && strpos($headers[0], '200')) {
        echo "URL Exist";
        return true;
    } else {
        echo "URL Doesn't Exist";
        return false;
    }
}
Ivan Cuaco

Respuestas similares a “Php verifique si existe el enlace”

Preguntas similares a “Php verifique si existe el enlace”

Más respuestas relacionadas con “Php verifique si existe el enlace” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código