0

我正在使用 timthump.php,它使用起来非常方便,但是我们使用它时存在问题,我们无法提供标准的图像位置 url。

在我们的情况下,我们将图像保存在数据库中,然后我设计了一个 php 页面,该页面从查询字符串中读取 id 或名称,然后将图像呈现为响应。我们需要在哪里获取图像,我们使用。

getmemberimg.php?id=1

虽然 timthumb 语法看起来像这样。

timthumb.php?src=image.jpeg

或者

timthumb.php?src=https://xyzsite.com/image.jpeg

现在当我把我的网址写成

timthumb.php?src=getmemberimg.php?id=1
timthumb.php?src=https://mysite.com/getmemberimg.php?id=1

这不起作用并返回错误。

如何克服这个问题?我的问题是如何将我的图像传递给 timthumb.php,而我可以使用 getmemberimg.php?id=1 获取图像...

4

1 回答 1

0

我不知道是什么timthumb.php。但是,如果您想获得网页的输出(例如来自 的图像getmemberimg.php?id=X),您可以使用file_get_contentscurl


文件获取内容:

使用 file_get_contents 显示图像

http://php.net/manual/en/function.file-get-contents.php


卷曲:

http://www.bitrepository.com/download-image.html

http://php.net/manual/en/book.curl.php

于 2013-06-12T06:37:58.510 回答