<?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>?>
可以用curl 也可以用js
直接用head location 跳转。
<?php .........?>
<?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标签的点击!