-1

我想在 PHP 中执行以下操作

我在一个目录中有图片,我需要将图片加载到一个 php 文件清理页面中"site.com/image.php?pic=xx/xx.jpg"

例子:http://freeminecraftaccount.org/image.php?pic=images/minecraft.jpg

if (file_exists('image.html')) {
    $temfile = fopen('image.html', 'r');
    $template = fread($temfile, filesize('image.html'));
    if ($title) {
        $template = eregi_replace("<PICTURETITLE>", $title, $template);
    } else {
        $template = eregi_replace("<PICTURETITLE>", $notitle, $template);
    }
    if ($desc) {
        $template = eregi_replace("<PICTUREDESCRIPTION>", $desc, $template);
    }
    if ($pic) {
        $template = eregi_replace("<PICTURE>", "src=\"$pic\">", $template);
    } else {
        $template = eregi_replace("<PICTURE>", $noimage, $template);
    }
    if ($return) {
        $template = eregi_replace("<PICTURELINK>", "<a href=\"$return\">RETURN</a>", $template);
    } else {
        $template = eregi_replace("<PICTURELINK>", "<a href=\"/\">RETURN</a>", $template);
    }
    echo $template;
}

?>

如果有人可以提供帮助,那就太好了,谢谢!

4

1 回答 1

0
    <?php
    if (isset($_GET['pic'])){
       $pic_location = $_GET['pic'];
    }
    else {
       $pic_location = 'someDefault.jpg';
    }
    ?> 

在您的 html 正文中:

 <img src="<?php echo $pic_location; ?>"/>

这假设您在 url 中有完整路径.. 否则在 echo 之前添加路径。

所以如果图像存储在http://site.com/images

但网址仅显示 imageName.jpg 然后执行此操作

<img src="http://site.com/images/<?php echo $pic_location; ?>"/>
于 2013-03-08T19:07:07.950 回答