I am making a maintenance page and you can set maintenance to true in PHP like this:

$maintenance = false;

And I want a function to include on every page, like this

include 'example.php';
maintenance_mode();

And the function should re-direct the user to the maintenance page.

有帮助吗?

解决方案

   function isMaintenance($maintenance)
   {
     if(isset($maintenance) && $maintenance){
        header("location:maintenace_page.php");
        exit();
     }          
   }

In config.php add $maintenance variable,

  $maintenance =true;

and include isMaintenance($maintenance) function page and config page in respective page or if you already included any common file all the pages then use that file and add mentioned stuff into that page.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top