当前位置:Gxlcms > PHP教程 > 参数传送到视图有关问题

参数传送到视图有关问题

时间:2021-07-01 10:21:17 帮助过:7人阅读

参数传送到视图问题
本帖最后由 yyszj0911 于 2011-11-24 14:43:05 编辑

代码如下(传不到视图页) ,但是用预设的$file="/var/www/test11.txt";的话就能够传的到 这是怎么回事阿
controller:
function indexAction()
{
$file_dir = @$_POST["dir"]; //文件路径为当前目录
$file_name = @$_POST["file_name"]; //文件名
$file=$file_dir.$file_name;
//$file="/var/www/test11.txt";
$this->view->downfile = $file;
echo $this->view->render('download/download.phtml');
}

view:
$file = $this->downfile;

if (file_exists($file)) {
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;
}
//$file = $this->downfile;
else{echo $file.'ssa';}



------解决方案--------------------
值是怎么post过来的呢?
------解决方案--------------------
预设的 $file="/var/www/test11.txt"; 显然是绝对路径,这自然没有问题

$file=$file_dir.$file_name;
如果也是绝对路径的话应该是没有问题的
如果是相对路径的话,那就要看是否正确了。至少要知道他相对于谁

人气教程排行