EventHttpRequest::sendError

(PECL event >= 1.4.0-beta)

EventHttpRequest::sendError向客户端发送 HTML 错误消息

说明

public EventHttpRequest::sendError( int $error , string $reason = null ): void

向客户端发送 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();
?>

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top