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