来自isset GET url的Substr

时间:2012-10-09 15:16:18

标签: php image url web get

我google了很多次但没有看到任何解决方案。 现在我的网站差不多完成了,但还有一个问题 我不知道如何编写有关从当前网址获取网址的代码 例如:http://abc.com/123.php?url = http://xyz.com/169.jpg 我怎样才能得到http://xyz.com/169.jpg并回应那个? 我尝试使用substr或preg_match,但没有工作.. 请帮助!!

3 个答案:

答案 0 :(得分:1)

也许你需要这样的东西。

 $url = $_GET['url'];

答案 1 :(得分:0)

查看 HTTP 变量here

的手册页 祝你好运!

答案 2 :(得分:0)

你可以尝试

  $url = isset($_GET['url']) ? urldecode($_GET['url']) : null ;