“Sprawdź, czy istnieje link” Kod odpowiedzi

PHP Sprawdź, czy istnieje adres 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

Sprawdź, czy istnieje link

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

Odpowiedzi podobne do “Sprawdź, czy istnieje link”

Pytania podobne do “Sprawdź, czy istnieje link”

Więcej pokrewnych odpowiedzi na “Sprawdź, czy istnieje link” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu