当我的 PHP 脚本运行时,我想运行这样的服务器端链接:
http://77.33.xx.xx/s/addtoqueue.php?action=store&filename=myprettypicture&link=http://i69.servimg.com/u/f69/13/29/70/44/facebo10.png
我这样做是为了将图像存储在自己的单独图像服务器上。该链接正在将图像添加到队列中。
如何正确执行此链接?
到目前为止,我这样做了:
$link = 'http://77.33.xx.xx/s/addtoqueue.php?action=store&filename='.$filename.'&link=$link;
但不知道如何运行这个?
顺便说一句,对 $link 进行 urlencode() 和 urldecode() 是否明智?