Home >Backend Development >PHP Tutorial >PHP如何做到自动发送GET请求?

PHP如何做到自动发送GET请求?

WBOY
WBOYOriginal
2016-06-23 13:59:091288browse

<?php<html><head>	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">	<title>PHP如何做到自动发送GET请求?</title></head><body><br/><a href="https://127.0.0.1/aaa.htm?a=1&b=33&c=1">连接</a></body></html>?>


PHP文件。
如上代码中,如何做到当打开这个页面的时候,自动点击里面的“连接”并跳转。


回复讨论(解决方案)

可以用curl 也可以用js

直接用head location 跳转。

<?php .........?>


里面应该写 php 的语法内容,不要写 HTML 的东西,如果非要写的话要写成下
<?php echo '<html>';....echo '</html>';?>

<html><head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    <title>PHP如何做到自动发送GET请求?</title></head><body><a id="url" href="https://127.0.0.1/aaa.htm?a=1&b=33&c=1">连接</a><script type="text/javascript">window.location = document.getElementById("url").href;</script></body></html>

发送get请求?是pingback还是什么东西。
可行的方案有:
1. file_get_contents ,curl之类
2. js 控制。
3.隐藏的iframe或者image?没有测试。

js中获取a标签的href
然后location.href= url

打开页面自动跳转到指定页面,并且带上参数即可。

 

$().ready(function(){  $("A").trigger("click");})

其实就是利用代码 虚拟一次 a标签的点击!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn