有没有办法将这个PHP放入一个数组并简化它?

Jam*_*son 5 php wordpress

以下代码加载在指定文件夹中找到的所有.php文件(单独定义).有没有办法将其放入数组以简化代码?

只有几个变量发生了变化,但基本上代码重复了几次.

// The General Files

$the_general = opendir(FRAMEWORK_GENERAL);

while (($the_general_files = readdir($the_general)) !== false) {
    if(strpos($the_general_files,'.php')) {
        include_once(FRAMEWORK_GENERAL . $the_general_files);       
    }       
}

closedir($the_general);


// The Plugin Files

$the_plugins = opendir(FRAMEWORK_PLUGINS);

while (($the_plugins_files = readdir($the_plugins)) !== false) {
    if(strpos($the_plugins_files,'.php')) {
        include_once(FRAMEWORK_PLUGINS . $the_plugins_files);       
    }       
}

closedir($the_plugins);
Run Code Online (Sandbox Code Playgroud)

还有几个部分调用不同的文件夹.

任何帮助是极大的赞赏.

干杯,詹姆斯

Zna*_*kus 5

我更好的方法是使用glob().并使其成为一个功能.

function includeAllInDirectory($directory)
{
    if (!is_dir($directory)) {
        return false;
    }

    // Make sure to add a trailing slash
    $directory = rtrim($directory, '/\\') . '/';

    foreach (glob("{$directory}*.php") as $filename) {
        require_once($directory . $filename);
    }

    return true;
}
Run Code Online (Sandbox Code Playgroud)


Art*_*cto 4

这相当简单。请参阅数组foreach

$dirs = array(FRAMEWORK_GENERAL, FRAMEWORK_PLUGINS, );

foreach ($dirs as $dir) {
    $d = opendir($dir);

    while (($file = readdir($d)) !== false) {
        if(strpos($file,'.php')) {
            include_once($dir . $file);       
        }       
    }

    closedir($d);
}
Run Code Online (Sandbox Code Playgroud)

  • 在这种情况下,最好使用“pathinfo($file, PATHINFO_EXTENSION)”。 (3认同)