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


PHP Request::getServer方法代码示例

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


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

示例1: _calcNonce

 /**
  * Calculate Nonce
  *
  * @return string The nonce value
  */
 protected function _calcNonce()
 {
     // Once subtle consequence of this timeout calculation is that it
     // actually divides all of time into _nonceTimeout-sized sections, such
     // that the value of timeout is the point in time of the next
     // approaching "boundary" of a section. This allows the server to
     // consistently generate the same timeout (and hence the same nonce
     // value) across requests, but only as long as one of those
     // "boundaries" is not crossed between requests. If that happens, the
     // nonce will change on its own, and effectively log the user out. This
     // would be surprising if the user just logged in.
     $timeout = ceil(time() / $this->_nonceTimeout) * $this->_nonceTimeout;
     $nonce = hash('md5', $timeout . ':' . $this->_request->getServer()->get('HTTP_USER_AGENT') . ':' . __CLASS__);
     return $nonce;
 }
开发者ID:robertodormepoco,项目名称:zf2,代码行数:20,代码来源:Http.php

示例2: testRequestAllowsSettingOfParameterContainer

 public function testRequestAllowsSettingOfParameterContainer()
 {
     $request = new Request();
     $p = new \Zend\Stdlib\Parameters();
     $request->setQuery($p);
     $request->setPost($p);
     $request->setFile($p);
     $request->setServer($p);
     $request->setEnv($p);
     $this->assertSame($p, $request->getQuery());
     $this->assertSame($p, $request->getPost());
     $this->assertSame($p, $request->getFile());
     $this->assertSame($p, $request->getServer());
     $this->assertSame($p, $request->getEnv());
 }
开发者ID:navassouza,项目名称:zf2,代码行数:15,代码来源:RequestTest.php

示例3: getBrowseAction

 /**
  * Return browse action from the request.
  *
  * @param Zend\Http\Request $request Request
  *
  * @return null|string Browse action or null if request is not a browse action
  */
 protected function getBrowseAction($request)
 {
     $referer = $request->getServer()->get('HTTP_REFERER');
     $match = null;
     $regex = '/^http[s]?:.*\\/Browse\\/(Database|Journal)[\\/.*]?/';
     if (preg_match($regex, $referer, $match)) {
         return $match[1];
     }
     return null;
 }
开发者ID:jlehmus,项目名称:NDL-VuFind2,代码行数:17,代码来源:AjaxController.php

示例4: getAccessLogEntry

 /**
  * return accessLog instance
  *
  * @param string $loginName
  * @param Zend_Auth_Result $authResult
  * @param Zend_Controller_Request_Abstract $request
  * @param string $clientIdString
  * @return Tinebase_Model_AccessLog
  */
 public function getAccessLogEntry($loginName, Zend_Auth_Result $authResult, \Zend\Http\Request $request, $clientIdString)
 {
     if ($header = $request->getHeaders('USER-AGENT')) {
         $userAgent = substr($header->getFieldValue(), 0, 255);
     } else {
         $userAgent = 'unknown';
     }
     $accessLog = new Tinebase_Model_AccessLog(array('ip' => $request->getServer('REMOTE_ADDR'), 'li' => Tinebase_DateTime::now(), 'result' => $authResult->getCode(), 'clienttype' => $clientIdString, 'login_name' => $loginName ? $loginName : $authResult->getIdentity(), 'user_agent' => $userAgent), true);
     return $accessLog;
 }
开发者ID:ingoratsdorf,项目名称:Tine-2.0-Open-Source-Groupware-and-CRM,代码行数:19,代码来源:AccessLog.php

示例5: getRefererURL

 /**
  * GetRefererUrl
  *
  * @return mixed
  */
 public function getRefererURL()
 {
     return $this->request->getServer('HTTP_REFERER');
 }
开发者ID:guenterh,项目名称:vufind,代码行数:9,代码来源:DomainURL.php

示例6: buildRequest

 private function buildRequest(HttpRequest $httpRequest)
 {
     $headers = $httpRequest->getHeaders();
     // Marshal content type, so we can seed it into the $_SERVER array
     $contentType = $headers->has('Content-Type') ? $headers->get('Content-Type')->getFieldValue() : '';
     // Get $_SERVER superglobal
     $server = [];
     if ($httpRequest instanceof PhpEnvironmentRequest) {
         $server = $httpRequest->getServer()->toArray();
     } elseif (!empty($_SERVER)) {
         $server = $_SERVER;
     }
     $server['REQUEST_METHOD'] = $httpRequest->getMethod();
     // Seed headers with HTTP auth information
     $headers = $headers->toArray();
     if (isset($server['PHP_AUTH_USER'])) {
         $headers['PHP_AUTH_USER'] = $server['PHP_AUTH_USER'];
     }
     if (isset($server['PHP_AUTH_PW'])) {
         $headers['PHP_AUTH_PW'] = $server['PHP_AUTH_PW'];
     }
     $bodyParams = $this->getBodyParams($httpRequest);
     return new OAuthRequest($httpRequest->getQuery()->toArray(), $bodyParams, [], [], [], $server, $httpRequest->getContent(), $headers);
 }
开发者ID:zource,项目名称:zource,代码行数:24,代码来源:OAuth.php


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