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


PHP HttpSocket::url方法代码示例

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


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

示例1: logRequest

/**
 * Log given HTTP request.
 *
 * @param array $request request data
 * @param array $response response data
 * @return void
 */
	public function logRequest($request, $response) {
		$this->_requestCnt++;
		$this->_requestTime += $this->took;
		$separator = '[**snip**]';
		$maxlength = $this->_requestLogLimitBytes - strlen($separator);

		$requestUri = $this->Http->url($request['uri']);
		$requestBody = $this->Http->request['body'];
		$responseBody = $this->Http->response['body'];
		if (strlen($requestBody) > $this->_requestLogLimitBytes) {
			$requestBody = substr_replace($requestBody, $separator, $maxlength / 2, strlen($requestBody) - $maxlength);
		}
		if (strlen($responseBody) > $this->_requestLogLimitBytes) {
			$responseBody = substr_replace($responseBody, $separator, $maxlength / 2, strlen($responseBody) - $maxlength);
		}
		$this->_requestLog[] = array(
			'request_method' => $this->Http->request['method'],
			'request_uri' => $requestUri,
			'request_body' => h($requestBody),
			'response_code' => $this->Http->response['status']['code'],
			'response_type' => $this->Http->response->getHeader('Content-Type'),
			'response_size' => strlen($this->Http->response['body']),
			'response_body' => h($responseBody),
			'query' => $this->Http->request['method'] . ' ' . $requestUri,
			'params' => '',
			'error' => '',
			'affected' => '',
			'numRows' => strlen($this->Http->response['body']),
			'took' => $this->took
		);
		if (count($this->_requestLog) > $this->_requestLogMax) {
			array_pop($this->_requestLog);
		}
	}
开发者ID:nojimage,项目名称:CakePHP-ReST-DataSource-Plugin,代码行数:41,代码来源:RestSource.php


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