我正在尝试使用锚标记访问我保存在服务器上(在上传文件夹中)的上传图像。目的是像缩放功能一样提供。缩放工作正常,但图像不显示。我试过这样的东西
<?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 代码访问图像?