久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      PHP如何下載遠(yuǎn)程文件到指定目錄

      PHP下載遠(yuǎn)程文件到指定目錄

      PHP用curl可以輕松實(shí)現(xiàn)下載遠(yuǎn)程文件到指定目錄:

      <?php class Download {    public static function get($url, $file)    {       return file_put_contents($file, file_get_contents($url));    }        public static function curlGet($url, $file)    {       $ch = curl_init();       curl_setopt($ch, CURLOPT_POST, 0);        curl_setopt($ch,CURLOPT_URL,$url);        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);        $file_content = curl_exec($ch);       curl_close($ch);       $downloaded_file = fopen($file, 'w');       fwrite($downloaded_file, $file_content);       fclose($downloaded_file);    }        public static function openGet($url, $file)    {       $in = fopen($url, "rb");       $out = fopen($file, "wb");       while ($chunk = fread($in,8192))       {          fwrite($out, $chunk, 8192);       }       fclose($in);       fclose($out);    }        /**    *    * 創(chuàng)建目錄,支持遞歸創(chuàng)建目錄    * @param String $dirName 要?jiǎng)?chuàng)建的目錄    * @param int $mode 目錄權(quán)限    */    public static function smkdir($dirName , $mode = 0777) {      $dirs = explode('/' , str_replace('\' , '/' , $dirName));      $dir = '';      foreach ($dirs as $part) {         $dir.=$part . '/';         if ( ! is_dir($dir) && strlen($dir) > 0) {            if ( ! mkdir($dir , $mode)) {               return false;            }            if ( ! chmod($dir , $mode)) {               return false;            }         }      }      return true;    } }

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)