我有这个代码
$__routes = array(
"Home" => "index.php",
"Contact" => "contact.php",
"Register" => "register.php",
);
我有这样的example.php文件
"Support" => "support.php",
"Success" => "success.php",
"Act" => "activate.php",
我想在“$__routes 数组”中包含 example.php 文件
有点像
$__routes = array(
"Home" => "index.php",
"Contact" => "contact.php",
"Register" => "register.php",
include 'example.php';
);
请问我该怎么做?