I have a php file like this
class Config {
public static $__routes = array(
"Home" => "index.php",
"Support" => "support.php",
);
}
Config::__routes += (include 'config/example1.php');
Config::__routes += (include 'config/example2.php');
can I include a directory
for example:
include('include 'config/example1.php');
include('include 'config/example2.php');
will be something like:
include('config/*');
You can use
globtry: