PHP URL GET 参数位于 URL 参数中
我正在开发 facebook/myspace 内容共享按钮。 Facebook 链接会将您带到我网站上的 URL,但我需要将其他参数与传递给 Facebook 的参数一起传递到我的 URL。这是我的示例:
http://www.facebook.com/share.php?t=MyCompany&u=http://foobar.com/test7.php?Share=161&FbShare=Facebook28
我需要转义“u”参数内的某些内容吗?
I am developing facebook/myspace content share buttons. The Facebook link takes you to a URL on my website, but I need to pass additional parameters to my URL along with the parameters passed to facebook. Here's my example:
http://www.facebook.com/share.php?t=MyCompany&u=http://foobar.com/test7.php?Share=161&FbShare=Facebook28
Do I need to escape something inside the "u" parameter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你应该能够做到(http://php.net/manual/en/function.urlencode.php)。
You should be able to do (http://php.net/manual/en/function.urlencode.php).
您需要在
上使用
参数,这将导致您的 URL 如下所示:urlencode
uYou need to use
urlencode
on theu
parameter, which will result in your URL looking like this: