我有一个下载ppt文件的页面。我想添加一个功能,而不提供登录凭据,页面将不会被下载。我的代码就像:
if(!isset($_SESSION['user']) && basename($_SERVER['PHP_SELF']) == 'XYZ.ppt'){
header('location:index.php');
}
但是在浏览器中,如果我输入该ppt文件的完整路径,那么它不会检查会话并自动下载。
提前致谢。
答案 0 :(得分:0)
在php中,您可以下载
<?php
// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');
// The PDF source is in original.pdf
readfile('original.pdf');
?>