我试图访问我已经使用锚标记救了我的服务器上(在上传文件夹)上传的图像。 其目的是提供像变焦功能。 变焦工作正常,但图像不显示。 我想是这样的
<?php
//$txt is the actual image name and $image is the name saved in uploads folder,$ext is the extension like .jpg or so.
$image = time().substr(str_replace(" ", "_", $txt), 5).".".$ext;
?>
在HTML
//image isn't displayed using
<a href = "<?php echo "uploads/$image" ?>"></a>
但显示如果我使用
<a href = "uploads/image.jpg"></a>.
有没有一种方法,我可以访问标记与PHP代码的图像?