0

我正在尝试在 Yii 中编写一个脚本来从服务器下载文件。

这些文件位于 Yii 项目的 webroot 中,

但我每次文件不存在错误,任何人都可以看到哪里错了:

public function actionDownload($id) {
    $audio = Audio::model()->findByPk($id);
    $file =  Yii::getPathOfAlias('webroot') . $audio->path;
    if (file_exists($file)) {
        header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename=' . $audio->path);
        header('Content-Length: ' . filesize($audio->path));
        $audio->downloaded = $audio->downloaded + 1;
        $audio->save();
    }else{
        echo "file not exist: ".$file;            
    }
    exit;
}

我得到的错误是:

file not exist: /var/www/vhosts/ikhwanbiz.org/httpdocs/userfiles/reklames/media/deneme/sen%20dep%20olmisem.mp3

谢谢

问候

比力

4

3 回答 3

3

Bili,这对我来说效果很好,并且在大多数浏览器上似乎都很好。

$filename = 'your_file_name.csv';
header('Content-Disposition: attachment; charset=UTF-8; filename="'.$filename.'"');
$utf8_content = mb_convert_encoding($content, "SJIS", "UTF-8");
echo $utf8_content;
Yii::app()->end();
return;

希望对你有帮助,祝你好运!

于 2013-02-20T09:48:51.770 回答
0

这更像是一个 php 问题而不是 yii 问题。

例如,

<?php
header("Content-disposition: attachment; filename=huge_document.pdf");
header("Content-type: application/pdf");
readfile("huge_document.pdf");
?>

来源:http ://webdesign.about.com/od/php/ht/force_download.htm

于 2014-10-01T23:24:37.500 回答
0

看起来文件名部分$audio->path是 URL 编码的,而服务器上实际文件的名称不是。您应该从源头修复它(不知道该路径是从哪里设置的),但与此同时,一个简单的解决方法是编写

$file =  Yii::getPathOfAlias('webroot') . urldecode($audio->path);
于 2013-02-20T09:59:56.167 回答