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


PHP Session::getResponseHeaders方法代碼示例

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


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

示例1: parseCookieFromHeaders

 /**
  *
  * this method fixes the following
  *
  * @see \Behat\Mink\Driver\BrowserKitDriver::getCookie
  *   Note that the following doesn't work well because
  *   Symfony\Component\BrowserKit\CookieJar stores cookies by name,
  *   path, AND domain and if you don't fill them all in correctly then
  *   you won't get the value that you're expecting.
  *
  *
  *
  * @param string $name
  * @return null|string
  */
 private function parseCookieFromHeaders($name)
 {
     try {
         $headers = $this->session->getResponseHeaders();
     } catch (\Behat\Mink\Exception\UnsupportedDriverActionException $e) {
         return null;
     }
     if (!is_array($headers) || empty($headers) || !isset($headers['set-cookie'])) {
         return null;
     }
     foreach ($headers['set-cookie'] as $cookieString) {
         if (!(stripos($cookieString, $name . '=') === 0)) {
             continue;
         }
         $cookiePieces = explode(';', $cookieString);
         if (!$cookiePieces) {
             return null;
         }
         $cookieKeyValue = explode('=', $cookiePieces[0]);
         if (!isset($cookieKeyValue[1])) {
             return null;
         }
         return $cookieKeyValue[1];
     }
     return null;
 }
開發者ID:lenninsanchez,項目名稱:donadores,代碼行數:41,代碼來源:Mink.php

示例2: _getResponseHeader

 public function _getResponseHeader($header)
 {
     $headers = $this->session->getResponseHeaders();
     if (!isset($headers[$header])) {
         return false;
     }
     return $headers[$header];
 }
開發者ID:NaszvadiG,項目名稱:ImageCMS,代碼行數:8,代碼來源:Mink.php

示例3: testGetResponseHeaders

 public function testGetResponseHeaders()
 {
     $this->driver->expects($this->once())->method('getResponseHeaders')->will($this->returnValue($ret = array(2, 3, 4)));
     $this->assertEquals($ret, $this->session->getResponseHeaders());
 }
開發者ID:saberyounis,項目名稱:Sonata-Project,代碼行數:5,代碼來源:SessionTest.php

示例4: getResponseHeadersLogMessage

 /**
  * @param Session $session
  *
  * @return string|null
  */
 private function getResponseHeadersLogMessage(Session $session)
 {
     try {
         return 'Response headers:' . "\n" . print_r($session->getResponseHeaders(), true) . "\n";
     } catch (MinkException $exception) {
         return null;
     }
 }
開發者ID:GerDner,項目名稱:luck-docker,代碼行數:13,代碼來源:FeatureContext.php


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