我正在使用symfony创建一个用于博客的网站。用户可以将他们的帖子上传到网站。当用户添加文件时,它将保存在web/upload/file_upload
内,文件路径将保存在add_post
表中。当管理员查看add_post
表模板时,他可以看到每个用户下载文件的路径,我想要做的是通过此文件路径下载文件。
我该怎么做?
编辑1:
模型 - Blog_user模块 - 发布
表结构 - 表名 - Blog_user
1 user_id bigint(20)
2 gender varchar(255)
3 blog_status tinyint(1)
4 file varchar(255)
表格
'user_id' => new sfWidgetFormInputHidden(),
'gender' => new sfWidgetFormInputText(),
'file' => new sfWidgetFormInputFile(),
这里上传文件时,文件路径保存在Blog_user表和文件中保存在web / upload目录中。
编辑2:
//保存文件方法
public function saveFile(){
$file = $this->getValue('file');
if(isset($file)){
$filename = 'POST_Uploaded -' .($file->getOriginalName());
$file->save(sfConfig::get('sf_upload_dir').'/post_upload'.'/'.$filename);
}
}
E:\xampp\htdocs\trunk\web\uploads\post_upload\POSt_Uploaded -JS.pdf
这个如何保存在side web / upload / post_upload目录下,同样的路径也会保存在db里面
编辑3:
当用户上传博客时,它将保存在blog_user表中,并且它包含blog _id作为主键,user_id在用户表上。我想要做的是当用户上传文件时,user_id和blog_id都应保存在博客表中。怎么做?
用户表 - user_id,文件(上传文件)
博客表 - blog_id - 有博客标题,每个标题都有一个独特的博客ID,这样用户就可以上传每个标题下的文件,发布表 - post_id,blog_id,user_id
答案 0 :(得分:0)
您可以在任何控制器中编写此文件,并在用户单击下载时调用该功能
function download(){
$file = "path/to/the/file.zip";
if (file_exists($file)) {
exit;
}
header('content-type:');
header('Content-Description: File Transfer');
//header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
答案 1 :(得分:0)
假设:
moduleName
BlogUser
id
我会这样:
在你的模板中:
<a href="<?php echo url_for('post/download?user_id='.$blog_user->getUserId()) ?>">Download file</a>
然后,在你的行动中(使用 Miqdad Ali 中的函数):
public function executeDownload(sfwebRequest $request)
{
$blog_user = Doctrine_Core::getTable('Blog_user')->find($request->getParameter('user_id'));
$this->forward404Unless($blog_user);
header('content-type:');
header('Content-Description: File Transfer');
//header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($blog_user->getFile()));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($blog_user->getFile()));
ob_clean();
flush();
readfile($blog_user->getFile());
return sfView::NONE;
}