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


PHP HTTP_Request2::setLastEvent方法代码示例

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


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

示例1: testDetach

 public function testDetach()
 {
     $request = new HTTP_Request2();
     $observer = new HTTP_Request2_MockObserver();
     $observer2 = new HTTP_Request2_MockObserver();
     $request->attach($observer);
     $request->detach($observer2);
     // should not be a error
     $request->setLastEvent('first');
     $request->detach($observer);
     $request->setLastEvent('second');
     $this->assertEquals(1, $observer->calls);
     $this->assertEquals(array('name' => 'first', 'data' => null), $observer->event);
 }
开发者ID:Geeklog-Core,项目名称:geeklog,代码行数:14,代码来源:ObserverTest.php

示例2: sendRequest

 /**
  * Sends request to the remote server and returns its response
  *
  * @param    HTTP_Request2
  * @return   HTTP_Request2_Response
  * @throws   HTTP_Request2_Exception
  */
 public function sendRequest(HTTP_Request2 $request)
 {
     if (!extension_loaded('curl')) {
         throw new HTTP_Request2_LogicException('cURL extension not available', HTTP_Request2_Exception::MISCONFIGURATION);
     }
     $this->request = $request;
     $this->response = null;
     $this->position = 0;
     $this->eventSentHeaders = false;
     $this->eventReceivedHeaders = false;
     try {
         if (false === curl_exec($ch = $this->createCurlHandle())) {
             $e = self::wrapCurlError($ch);
         }
     } catch (Exception $e) {
     }
     if (isset($ch)) {
         $this->lastInfo = curl_getinfo($ch);
         curl_close($ch);
     }
     $response = $this->response;
     unset($this->request, $this->requestBody, $this->response);
     if (!empty($e)) {
         throw $e;
     }
     if ($jar = $request->getCookieJar()) {
         $jar->addCookiesFromResponse($response, $request->getUrl());
     }
     if (0 < $this->lastInfo['size_download']) {
         $request->setLastEvent('receivedBody', $response);
     }
     return $response;
 }
开发者ID:venamax,项目名称:trixandtrax-cl,代码行数:40,代码来源:Curl.php

示例3: sendRequest

 /**
  * Sends request to the remote server and returns its response
  *
  * @param    HTTP_Request2
  * @return   HTTP_Request2_Response
  * @throws   HTTP_Request2_Exception
  */
 public function sendRequest(HTTP_Request2 $request)
 {
     if (!extension_loaded('curl')) {
         throw new HTTP_Request2_Exception('cURL extension not available');
     }
     $this->request = $request;
     $this->response = null;
     $this->position = 0;
     $this->eventSentHeaders = false;
     $this->eventReceivedHeaders = false;
     try {
         if (false === curl_exec($ch = $this->createCurlHandle())) {
             $errorMessage = 'Error sending request: #' . curl_errno($ch) . ' ' . curl_error($ch);
         }
     } catch (Exception $e) {
     }
     $this->lastInfo = curl_getinfo($ch);
     curl_close($ch);
     $response = $this->response;
     unset($this->request, $this->requestBody, $this->response);
     if (!empty($e)) {
         throw $e;
     } elseif (!empty($errorMessage)) {
         throw new HTTP_Request2_Exception($errorMessage);
     }
     if (0 < $this->lastInfo['size_download']) {
         $request->setLastEvent('receivedBody', $response);
     }
     return $response;
 }
开发者ID:rubythonode,项目名称:xe-core,代码行数:37,代码来源:Curl.php


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