EventHttpRequest::sendError
EventHttpRequest::sendError
(PECL event >= 1.4.0-beta)
EventHttpRequest :: sendError - 向客户端发送HTML错误消息
描述
public void EventHttpRequest::sendError ( int $error [, string $reason = NULL ] )
向客户端发送HTML错误消息。
参数
error
HTTP错误代码。
reason
对错误的简要解释。如果为NULL
,则将使用错误代码的标准含义。
返回值
没有值返回。
例
示例#1 EventHttpRequest :: sendError()示例
<?php
function _http_400($req) {
$req->sendError(400
}
$base = new EventBase(
$http = new EventHttp($base
$http->setCallback("/err400", "_http_400"
$http->bind("0.0.0.0", 8010
$base->loop(
?>
扩展内容
- EventHttpRequest :: sendReply() - 向客户端发送HTML回复
← EventHttpRequest::removeHeader
EventHttpRequest::sendReply →