当前位置: 首页>>代码示例>>PHP>>正文


PHP Connector::_loops方法代码示例

本文整理汇总了PHP中Connector::_loops方法的典型用法代码示例。如果您正苦于以下问题:PHP Connector::_loops方法的具体用法?PHP Connector::_loops怎么用?PHP Connector::_loops使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Connector的用法示例。


在下文中一共展示了Connector::_loops方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: curl_exec_follow

 private function curl_exec_follow($ch)
 {
     if (self::$_loops++ >= self::$_maxLoops) {
         self::$_loops = 0;
         return false;
     }
     $data = curl_exec($ch);
     $temp = $data;
     list($header, $data) = explode("\n\n", $data, 2);
     $http = curl_getinfo($ch, CURLINFO_HTTP_CODE);
     if ($http == 301 || $http == 302) {
         $matches = array();
         preg_match('/ocation:(.*?)\\n/', $header, $matches);
         $url = @parse_url(trim(array_pop($matches)));
         //            print_r($url);
         if (!$url) {
             self::$_loops = 0;
             return $data;
         }
         $last_url = parse_url(curl_getinfo($ch, CURLINFO_EFFECTIVE_URL));
         if (!$url['scheme']) {
             $url['scheme'] = $last_url['scheme'];
         }
         if (!$url['host']) {
             $url['host'] = $last_url['host'];
         }
         if (!$url['path']) {
             $url['path'] = $last_url['path'];
         }
         $new_url = $url['scheme'] . '://' . $url['host'] . $url['path'] . ($url['query'] ? '?' . $url['query'] : '');
         //            echo "\n redirect to ".$new_url;
         //@todo Возможна непредвиденая хуйня.
         curl_setopt($ch, CURLOPT_POST, 0);
         curl_setopt($ch, CURLOPT_URL, $new_url);
         return $this->curl_exec_follow($ch);
     } else {
         self::$_loops = 0;
         return $temp;
     }
 }
开发者ID:stereojesus,项目名称:classes,代码行数:40,代码来源:vk_sender.php


注:本文中的Connector::_loops方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。