文件,我有這樣的代碼包括在陣列
$__routes = array(
"Home" => "index.php",
"Contact" => "contact.php",
"Register" => "register.php",
);
,我有這樣的
"Support" => "support.php",
"Success" => "success.php",
"Act" => "activate.php",
我想包括在 「$ __路線陣」
使用example.php文件使用example.php文件東西能像
$__routes = array(
"Home" => "index.php",
"Contact" => "contact.php",
"Register" => "register.php",
include 'example.php';
);
PLE我怎麼能做到這一點?
非常感謝你 – user2005646