當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Client::getCurlMulti方法代碼示例

本文整理匯總了PHP中Guzzle\Http\Client::getCurlMulti方法的典型用法代碼示例。如果您正苦於以下問題:PHP Client::getCurlMulti方法的具體用法?PHP Client::getCurlMulti怎麽用?PHP Client::getCurlMulti使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Guzzle\Http\Client的用法示例。


在下文中一共展示了Client::getCurlMulti方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testTrimsDownMaxHandleCount

 public function testTrimsDownMaxHandleCount()
 {
     $this->getServer()->flush();
     $this->getServer()->enqueue(array("HTTP/1.1 307 OK\r\nLocation: /foo\r\nContent-Length: 0\r\n\r\n", "HTTP/1.1 307 OK\r\nLocation: /foo\r\nContent-Length: 0\r\n\r\n", "HTTP/1.1 307 OK\r\nLocation: /foo\r\nContent-Length: 0\r\n\r\n", "HTTP/1.1 307 OK\r\nLocation: /foo\r\nContent-Length: 0\r\n\r\n", "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n"));
     $client = new Client($this->getServer()->getUrl());
     $client->setCurlMulti(new CurlMultiProxy(2));
     $request = $client->get();
     $request->send();
     $this->assertEquals(200, $request->getResponse()->getStatusCode());
     $handles = $this->readAttribute($client->getCurlMulti(), 'handles');
     $this->assertEquals(2, count($handles));
 }
開發者ID:ludichrislyts,項目名稱:fieldWork,代碼行數:12,代碼來源:CurlMultiProxyTest.php

示例2: testCatchesExceptionsWhenRemovingQueuedRequestsBeforeSending

 public function testCatchesExceptionsWhenRemovingQueuedRequestsBeforeSending()
 {
     $this->getServer()->enqueue("HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n");
     $client = new Client($this->getServer()->getUrl());
     $r = $client->get();
     $r->getEventDispatcher()->addListener('request.before_send', function () use($client) {
         // Create a request using a queued response
         $client->get()->setResponse(new Response(404), true)->send();
     });
     try {
         $r->send();
         $this->fail('Did not throw');
     } catch (BadResponseException $e) {
         $this->assertCount(0, $client->getCurlMulti());
     }
 }
開發者ID:biribogos,項目名稱:wikihow-src,代碼行數:16,代碼來源:CurlMultiTest.php

示例3: testDontReuseCurlMulti

 public function testDontReuseCurlMulti()
 {
     $client1 = new Client();
     $client2 = new Client();
     $this->assertNotSame($client1->getCurlMulti(), $client2->getCurlMulti());
 }
開發者ID:carlesgutierrez,項目名稱:libreobjet.org,代碼行數:6,代碼來源:ClientTest.php


注:本文中的Guzzle\Http\Client::getCurlMulti方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。