1
我使用Zend FW 1
下載文件。在Zend 1(PHP)下載文件:文件名是日文
文件需要下載有文件名日本:るファイルを選択.pdf
$this->path:
是文件路徑。例如:D:\るファイルを選択.pdf
這是我的代碼在PHP
public function send() {
if($this->checkPath()) {
// fileinfo extention enable
$type = mime_content_type($this->path);
if ($this->getRequest()->isSecure()) { // HTTPS sites - watch out for IE! KB812935 and KB316431.
header('Content-Description: File Transfer');
header('Cache-Control: max-age=10');
header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
header('Pragma: ');
} else { //normal http - prevent caching at all cost
header('Content-Description: File Transfer');
header('Cache-Control: private, must-revalidate, pre-check=0, post-check=0, max-age=0');
header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
header('Pragma: no-cache');
}
if ($this->isIE()) {
$name = rawurlencode($this->name);
} else {
$name = $this->s($this->name);
}
$name = urlencode($name);
$Disposition = "attachment;filename*=UTF-8''$name";
$this->getResponse()->setHeader('Content-Type', $type . ";charset=utf-8")
->setHeader('Content-Disposition', $Disposition, true)
->setHeader('Content-Transfer-Encoding', 'binary', true)
->setHeader('X-Sendfile', readfile($this->path), true)
->sendResponse();
unlink($this->path);
}
}
但mime_content_type($this->path)
retun:
mime_content_type(d:\るファイルを選択.PDF):未能打開流:沒有這樣的 文件或目錄...
我在getResponse
設置UTF-8
它的做工精細'mime_content_type()'日本文件名。也許你的路徑錯誤或文件不存在。 – newage
我檢查了文件,然後看到文件路徑正確和文件存在 –