PHP Classes

File: examples/handlers/404.php

Recommend this page to a friend!
  Classes of Rafa Rodriguez   Div PHP Matrix Library   examples/handlers/404.php   Download  
File: examples/handlers/404.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Div PHP Matrix Library
Define matrices with dynamic cell calculations
Author: By
Last change:
Date: 5 months ago
Size: 103 bytes
 

Contents

Class file image Download
<?php

return function ()
{
   
http_response_code(404);
    echo
"Page not found";
    return
true;
};