Heim >Backend-Entwicklung >PHP-Tutorial >php 模拟请求 页面跳转问题

php 模拟请求 页面跳转问题

WBOY
WBOYOriginal
2016-06-23 14:00:56990Durchsuche

我通过模拟请求访问了一个页面A.php
想A.php 页面里实现自动请求B页面的功能

想请教下 自动请求功能代码怎么实现?


回复讨论(解决方案)

查看curl函数

查看curl函数

本人PHP新手,能不能详细点呢?谢谢了!

/**	 * post方式获取数据	 * @param string $url 目标url	 * @param array $dataes 要post的数据	 * @param int $timeout 等待响应的最大时间  默认为1	 * @return $output 如果host可用就返回相应的返回内容      如果不合法则返回false	 */	static function post($url,$dataes,$timeout=1){		$ch = curl_init();		curl_setopt($ch,CURLOPT_URL,$url);		curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);		//指定数据传输支持post		curl_setopt($ch,CURLOPT_POST,1);		//设置post传递的键值对		curl_setopt($ch,CURLOPT_POSTFIELDS,$dataes);		//设置超时		curl_setopt($ch,CURLOPT_TIMEOUT,$timeout);		$output=curl_exec($ch);		curl_close($ch);		return $output;	}

好像能用,返回信息了!!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:求大神帮忙,php怎么从WCF服务取数据Nächster Artikel:日期函数