當前位置: 首頁>>代碼示例>>PHP>>正文


PHP header::download方法代碼示例

本文整理匯總了PHP中header::download方法的典型用法代碼示例。如果您正苦於以下問題:PHP header::download方法的具體用法?PHP header::download怎麽用?PHP header::download使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在header的用法示例。


在下文中一共展示了header::download方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: index

 function index()
 {
     $header = new header();
     $header->download("Download");
     $content = file_get_contents("https://down.vn/");
     preg_match_all('/<div id="content" class="clearfix">(.*?)<div class="clear">/s', $content, $matches, PREG_SET_ORDER);
     foreach ($matches as $key) {
     }
     $data['content'] = $key['1'];
     $this->load->view('file/index', $data);
 }
開發者ID:quantm,項目名稱:mywebprovn,代碼行數:11,代碼來源:download.php

示例2: download

 public static function download($file, $name = null)
 {
     // stop the download if the file does not exist or is not readable
     if (!is_file($file) or !is_readable($file)) {
         return false;
     }
     header::download(array('name' => $name ? $name : f::filename($file), 'size' => f::size($file), 'mime' => f::mime($file), 'modified' => f::modified($file)));
     die(f::read($file));
 }
開發者ID:chrishiam,項目名稱:LVSL,代碼行數:9,代碼來源:f.php

示例3: download

 /**
  * Forces a download of the string as text file
  *
  * @param string $string
  * @param string $name Optional name for the downloaded file
  */
 public static function download($string, $name = null)
 {
     header::download(array('name' => $name ? $name : 'text.txt', 'size' => static::length($string), 'mime' => 'text/plain'));
     die($string);
 }
開發者ID:muten84,項目名稱:luigibifulco.it,代碼行數:11,代碼來源:str.php

示例4: game

 function game($path)
 {
     $header = new header();
     $mydb = $this->load->database('helihost', TRUE);
     $query = $mydb->select('*')->from('system_download')->like('path', $path)->get()->result_array();
     if ($query) {
         $header->download("Download game " . $query[0]['name']);
         //$content=file_get_contents($query[0]['path']);
         redirect('http://myweb.pro.vn/download/index/');
     } else {
         $header->download("Download game");
         $content = file_get_contents('http://down.vn/game/' . $path);
     }
     //reset path
     //$content=str_replace('<a href="','<a href="/download',$content);
     //end
     preg_match_all('/<div id="content" class="clearfix">(.*?)<div class="clear">/s', $content, $matches, PREG_SET_ORDER);
     foreach ($matches as $key) {
     }
     //$content=str_replace('href="http://down.vn','href="http://myweb.pro.vn/game',$key['1']);
     //$content=str_replace('href="https://down.vn','href="http://myweb.pro.vn/game',$key['1']);
     $data['content'] = $content;
     $this->load->view('file/index', $data);
 }
開發者ID:quantm,項目名稱:mywebprovn,代碼行數:24,代碼來源:download.php


注:本文中的header::download方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。