PHP异步执行义务fsockopen的适用办法
咱们创立了一个基于fsockopen的函数,这个函数中行使fsockopen去拜访url,然而正在拜访时,其实不要求猎取url显示的内容,而是仅仅收回拜访申请,申请抵达后即刻封闭这个拜访。
这样做的益处就是无需再期待被拜访的url能否前往了牢靠的信息,节约了工夫,这段代码的执行工夫正在0.1-0.2秒之间,关于一般访客而言,简直觉察没有到。因而,正在应用时,仅需求挪用这个函数以及对应的url便可。不外,这里并无提供数据传输的局部,若何传输数据,其实只要要正在$header中添加post的内容便可。
/** * @生生 2018/12/24 19:25:06 * [asynchronous PHP异步执行义务] * @param string $url 执行义务的url地点 * @param array $post_data 需求post提交的数据POST * @param array $cookie cookie数据用于登录等的设置(此处外部挪用,无需鉴权) * @return boole */ public function asynchronous($url,$post_data = array()) { $url_array = parse_url($url); dump($url_array); //用fsockopen()测验考试衔接 $fp = fsockopen($url_array['host'], 80, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { //建设胜利后,向效劳器写入数据 $getPath = isset($url_array['path']) ? $url_array['path'] : '/'; $out = "GET /".$getPath."/ HTTP/1.1\r\n"; $out .= "Host:".$url_array['host']."\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); /*疏忽执行后果 while (!feof($fp)) { echo fgets($fp, 128); }*/ //封闭链接 fclose($fp); } }
挪用办法
/** * 异步办法 * 参数:(string)要执行的办法url,(array)传入参数 */ function yibu(){ $this->asynchronous('https://www.liqingbo.cn/index.php/admin/index/test',['1'=>'haha']); //间接前往后果 echo '操作胜利'; }
保举教程:《PHP视频教程》
以上就是异步执行PHP义务fsockopen的干货的具体内容,更多请存眷资源魔其它相干文章!
标签: php开发教程 php开发资料 php开发自学 fsockopen
版权声明:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。
抱歉,评论功能暂时关闭!