根据文件夹内容生成PHP开关

时间:2013-05-09 19:05:19

标签: php file loops switch-statement

我们说我有一个包含3个文件的文件夹; file1.php,file2.php,file3.php。 在同一个文件夹中,我有index.php,我想为每个文件生成切换案例。

$files = array();
$folder = opendir(realpath(dirname(__FILE__)));
while ($file = readdir($folder)) { 
    if (strpos($file, '.php') !== false && $file !== 'index.php') { 
        array_push($files, $file);  
    }
}

$switch = $_GET['component'];
switch($switch) {
    foreach ($files as $file) {
        case str_replace('.php', '', $file):        include_once($file);                break;
    }   
}

我希望我的案例最终看起来像什么:

$switch = $_GET['component'];
switch($switch) {
        case file1:     include_once('file1.php');              break;
        case file2:     include_once('file2.php');              break;
        case file3:     include_once('file3.php');              break;
}

1 个答案:

答案 0 :(得分:4)

嗯......似乎对我很沮丧。

if( in_array($_GET['component'].".php",glob("*.php")) && $_GET['component'] != "index")
    include_once($_GET['component'].".php");