PHP Classes

File: application/i18n/en/en.php

Recommend this page to a friend!
  Classes of Nitesh Apte   Define MVC PHP 8   application/i18n/en/en.php   Download  
File: application/i18n/en/en.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Define MVC PHP 8
Framework to route requests via a front controller
Author: By
Last change:
Date: 2 years ago
Size: 597 bytes
 

Contents

Class file image Download
<?php
declare(strict_types = 1);
namespace
Application\i18n;

if(
DIRECT_ACCESS != true) die("Direct access is forbidden.");

return array(
   
// Error page //
   
"400" => "Bad Request.",
   
"401" => "Unauthorized Access.",
   
"402" => "Payment Required.",
   
"403" => "Forbidden. You are not allowed to access this page.",
   
"408" => "Request Timeout.",
   
"415" => "Unsupported Media Type.",
   
"500" => "Internal Server Error.",
   
"502" => "Bad Gateway.",
   
"503" => "Service Unavailable.",
   
"404" => "Page Not Found! <BR><BR>Oops...Guess you were looking for something else."
);