一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

php判断远程图片是否存在

时间:2010-08-24 编辑:简简单单 来源:一聚教程网

 代码如下 复制代码

function img_exits($url)
{
    $ch = curl_init();
    curl_setopt($ch, curlopt_url,$url);
    curl_setopt($ch, curlopt_nobody, 1); // 不下载
    curl_setopt($ch, curlopt_failonerror, 1);
    curl_setopt($ch, curlopt_returntransfer, 1);

    if(curl_exec($ch)!==false)
        return true;
    else
        return false;
}

//方法二

 代码如下 复制代码

function img_exists($url)
{
    if(file_get_contents($url,0,null,0,1))
        return 1;
else
        return 0;
}

//

/**
@title:如何检查某个远程文件是否存在(php5)
@author:axgle
@version:1.0
*/
$url='http://www.111com.net/';
echo url_exists($url);
 
function url_exists($url) {
 
        $head=@get_headers($url);
        if(is_array($head)) {
                return true;
        }
        return false;
 
}

?>

网页特效方法

 代码如下 复制代码

网页特效 ">
function   geturl(url)
{
        var   xmlhttp   =   new   activexobject( "microsoft.xmlhttp ");
        xmlhttp.open( "get ",url,false);
        xmlhttp.send();
        if   (xmlhttp.readystate==4)
            alert((xmlhttp.status==200)? "文件存在 ": "文件不存在 ");
}

请输入文件地址: http://www.111com.net ">
检测地址

热门栏目