从外部服务器获取页面
我想向函数传递一个字符串,该函数将该字符串附加到 url 上。 然后转到该 url,然后将页面返回到我的服务器,以便我可以使用 JS 操作它。
任何想法将不胜感激。
干杯。
I want to pass a function a string, which takes that string tacks it onto url. Then goes to that url and then returns the page to my server so I can manipulate it with JS.
Any Ideas would be much appreciated.
cheers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 CURL 可能是最简单的,但我更喜欢自己做一些事情。 这将连接到给定地址并返回页面内容。 不过,它还会返回标头,因此请注意:
Using CURL would probably be easiest but I prefer to do stuff myself. This will connect to a given address and return the contents of the page. It will also return the headers, though, so watch out for that:
如果您的 fopen_wrappers 已启用,您可以使用 file_get_contents() 检索页面,然后将 JavaScript 插入到之前的内容中将其作为输出进行回显。
这当然不会影响原来的页面。
If your fopen_wrappers are enabled, you can use file_get_contents() to retrieve the page, and then insert JavaScript into the content before echoing it as output.
This of course won't affect the original page.
您应该能够使用
fopen()
来实现您想要的目的。 它可以接受 URL。You should be able to use
fopen()
for what you want. It can accept URLs.