cache-domains/scripts/lib/include.php
2018-03-10 01:44:51 +01:00

26 lines
625 B
PHP

<?php
// ------------------------------------------------------------ //
// Array of files to include
// ------------------------------------------------------------ //
$includes = array(
"functions",
"cli_mode",
"web_mode",
);
// ------------------------------------------------------------ //
// Include the php files in the array
// ------------------------------------------------------------ //
foreach ($includes as $key => $value)
{
//Always finde the correct path
$dir_path = __FILE__;
$dir_path = str_replace("include.php", "", $dir_path);
require_once $dir_path . $value . ".php";
}
?>