我调用了一个http://site.com/process.php
将 url 作为其参数之一的 php 脚本。for=
http://site.com/process.php?for=http://www.anotherwebsite.com
然后我这样做并尝试parse_url()
但 parse_url() 给出了解析错误。
$uri = $_SERVER['REQUEST_URI']; // /process.php?for=http://www.anotherwebsite.com
parse_url($uri);
如何for
在发送端(在 url 中)或在接收端(php)对参数进行编码,以便parse_url()
理解它只是一个看起来像 url 的参数?