Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我单击 jpg 图像的链接时,浏览器通常会打开一个新选项卡,并将其显示在白色背景上。我想使用一个生成的 php 页面,它会显示图像,所以我可以在上面使用 css。我可以将每张图片放在一个 php 网站上,然后简单地链接到该网站,但我希望它自动发生,一旦点击任何图片链接。
<a href="http://www.website.com/images/image.jpg">Link</a>
我怎么做?
更改链接<a href="http://example.com/showimage.php?image=images/image.jpg">Link</a>或类似链接,创建一个具有您想要的格式的 showimage.php 页面,并使用它$_GET[ 'image' ]来获取请求的图像的 url。
<a href="http://example.com/showimage.php?image=images/image.jpg">Link</a>
$_GET[ 'image' ]