私はこのphpコードを持っています
<?php
class Config {
public static $__routes = array(
"Home" => "index.php",
"Support" => "support.php",
"Ads" => "ads.php",
);
}
?>
そして私はこのようなex.phpファイルを持っています
"Upgrade" => "upgrade.php",
"Faq" => "faq.php",
"Tos" => "tos.php",
「クラス」にある「publicstatic$__routesarray」にex.phpファイルを含めたい
のようなもの
<?php
class Config {
public static $__routes = array(
"Home" => "index.php",
"Support" => "support.php",
"Ads" => "ads.php",
include 'ex.php';
);
}
?>
どうすればいいですか?