• php判断远程图片是否存在


    php教程判断远程图片是否存在

        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.111cn.net/';
        echo url_exists($url);
         
        function url_exists($url) {
         
                $head=@get_headers($url);
                if(is_array($head)) {
                        return true;
                }
                return false;
         
        }
    
        ?>
    

     网页特效方法

    <script   language= "网页特效 ">
    function   geturl(url)
    {
            var   xmlhttp   =   new   activexobject( "microsoft.xmlhttp ");
            xmlhttp.open( "get ",url,false);
            xmlhttp.send();
            if   (xmlhttp.readystate==4)
                alert((xmlhttp.status==200)? "文件存在 ": "文件不存在 ");
    }
    </script>
    请输入文件地址: <input   name= "file "   id= "file "   value= "http://www.111cn.net ">
    <button   onclick= "geturl(file.value) "> 检测地址 </button>
    
  • 相关阅读:
    视图、触发器、事务、存储过程、函数,流程控制
    权限管理,pymysql模块
    单表查询
    sql逻辑查询语句的执行顺序
    Mysql数据库基础知识
    库,表,记录的相关操作
    并发编程之IO模型
    并发编程之协程
    并发编程之多线程
    事件委托
  • 原文地址:https://www.cnblogs.com/zhaoyuqi/p/img_exits.html
Copyright © 2020-2023  润新知