Php:如何保护图像以供下载

时间:2016-05-19 12:16:39

标签: php codeigniter

在我的网站中,我们正在进行图像保护部分。我是否可以保护我的网站中的图像,而无需下载。这是我想保护我的图像不被其他人下载。是否可以使用PHP代码

1 个答案:

答案 0 :(得分:0)

你可以通过在php中使用强制下载来实现这一点。

view more

此代码将使用htaccess下载文件和阻止文件文件夹

$file_url = 'base path to file / file name';
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary"); 
header("Content-disposition: attachment; filename=\"" . basename($file_url) . "\""); 
readfile($file_url);