(PECL event >= 1.4.0-beta)
EventHttpRequest::sendError — 向客户端发送 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();
?>