私はこのようなphpファイルを持っています
class Config {
public static $__routes = array(
"Home" => "index.php",
"Support" => "support.php",
);
}
Config::__routes += (include 'config/example1.php');
Config::__routes += (include 'config/example2.php');
ディレクトリを含めることはできますか
例えば:
include('include 'config/example1.php');
include('include 'config/example2.php');
次のようになります:
include('config/*');