PHP code example of programster / http-codes
1. Go to this page and download the library: Download programster/http-codes library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
programster / http-codes example snippets
use Programster\Http\HttpCode;
http_response_code(HttpCode::NOT_FOUND);
$body = [
"result" => "error",
"message" => "Resource not found.",
];
header('Content-Type: application/json');
die(json_encode($body));