发送HTTP 418我是一个茶壶

时间:2013-02-12 01:04:02

标签: php http

我有一个网络服务器,我希望在某些条件下拥有HTTP状态代码418'我是一个茶壶',我相信我会使用if语句,我似乎无法得到它旅行,任何帮助?

1 个答案:

答案 0 :(得分:28)

<?php
header("HTTP/1.1 418 I'm a teapot");
?>
<html>
<h1>418 I'm a teapot</h1><br>
<p>The HTCPCP Server is a teapot. The responding entity MAY be short and stout.</p>
</html>

会导致:

418我是茶壶


HTCPCP服务器是一个茶壶。响应实体可能很短而粗壮。