下載輔助函數(shù)
下載輔助函數(shù)可以下載數(shù)據(jù)到你的桌面
加載這個輔助函數(shù)
用下面的代碼加載這個輔助函數(shù)
$this->load->helper('download');
下面的函數(shù)就有效:
force_download('filename', 'data')
服務器產生能下載數(shù)據(jù)到你桌面的頭. 這對你下載文件有幫助. 第一個參數(shù)是下載文件的文件名, 第二個參數(shù)是文件數(shù)據(jù). Example:
$data = 'Here is some text!';
$name = 'mytext.txt';
force_download($name, $data);
如果你想在你的服務器上下載一個存在文件,你需要將它讀到一個字符串中:
$data = file_get_contents("/path/to/photo.jpg"); // 讀文件內容
$name = 'myphoto.jpg';
force_download($name, $data);
?
翻譯貢獻者:
Hex, moonster
最后修改: 2008-02-02 20:28:04