1

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

<?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 代码访问图像?

4

2 回答 2

2

你没有关闭<?PHP标签。做它喜欢

 <a href = "<?php echo 'uploads/$image'; ?>"></a> 
于 2013-05-11T21:02:04.640 回答
2

您缺少分号,并且 $variable 用单引号括起来,因此不会展开。

<a href="uploads/<?php echo $image; ?>">Image</a>

安东尼。

于 2013-05-11T21:19:37.370 回答