我正在研究 Yii,我想上传和下载一些文件,我可以将一些文件上传到 blob 类型的 blob_document 字段中的 Documents 表中,现在我已经尝试这样做来下载文件
<?
$file = Documents::model()->findByPk('3');
$file = $file->blob_document;
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Cache-Control: must-revalidate');
header('Pragma: public');
echo $file;
exit;
?>
我正在下载一个 .txt 文件,它是正确的扩展名,但内容具有文件名而不是原始文本。