我正在显示readfile()
php 的图像使用功能
HMTL:
<img src='image.php?id=232'/>
PHP:图像.php
<?php
$id=$_GET["id"];
if(image_view_allow($id)){
$path=get_image_path($id);
readfile($path);
}else{
readfile("images/not_allow.png");
}
image_view_allow
并且get_image_path
是我定义的两个,用于检查验证并获取我这样做的路径,因为我只想向允许的人显示图像。
这会影响下载图像的速度吗?什么是正常的(表示 img 标签的 src 属性中的直接路径)或上面显示的技巧?