PHP 中的 Http 响应代码枚举
我正在寻找类似=>404,=>200的东西HttpResponseCode::FileNotFound
HttpResponseCode::OK
我搜索了“php http状态代码列表”,“php http状态代码枚举”,但找不到任何东西。
我正在寻找类似=>404,=>200的东西HttpResponseCode::FileNotFound
HttpResponseCode::OK
我搜索了“php http状态代码列表”,“php http状态代码枚举”,但找不到任何东西。
要搜索的术语是“php http状态代码const”,它引导您 http://symfony.com/blog/new-in-symfony-2-4-using-constants-for-http-status-code - 它具有和\Illuminate\Http\Response::HTTP_NOT_FOUND
\Illuminate\Http\Response::HTTP_OK
等。
列表在这里 - https://github.com/symfony/HttpFoundation/blob/master/Response.php