Auth_Yadis_HTTPFetcher::isHTTPS PHP Method

isHTTPS() public method

Is this an https URL?
public isHTTPS ( $url )
    function isHTTPS($url)
    {
        return (bool) preg_match('/^https:\\/\\//i', $url);
    }