本文整理汇总了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);
}
}