在PHP中,我可以包括一个脚本目录吗?

例如:

include('classes/Class1.php');
include('classes/Class2.php');

比如:

include('classes/*');

似乎找不到一个好方法来为一个特定的类包含大约10个子类的集合。


当前回答

尝试使用库来实现这个目的。

这是我构建的相同想法的一个简单实现。 它包括指定的目录和子目录文件。

IncludeAll

通过终端[cmd]安装

composer install php_modules/include-all

或者将其设置为包中的依赖项。json文件

{
  "require": {
    "php_modules/include-all": "^1.0.5"
  }
}

使用

$includeAll = requires ('include-all');

$includeAll->includeAll ('./path/to/directory');

其他回答

我建议您使用readdir()函数,然后循环并包含文件(请参阅该页上的第一个示例)。

你可以使用set_include_path:

set_include_path('classes/');

http://php.net/manual/en/function.set-include-path.php

2017年如何做到这一点:

spl_autoload_register( function ($class_name) {
    $CLASSES_DIR = __DIR__ . DIRECTORY_SEPARATOR . 'classes' . DIRECTORY_SEPARATOR;  // or whatever your directory is
    $file = $CLASSES_DIR . $class_name . '.php';
    if( file_exists( $file ) ) include $file;  // only include if file exists, otherwise we might enter some conflicts with other pieces of code which are also using the spl_autoload_register function
} );

这里由PHP文档推荐:自动加载类

不要编写函数()在目录中包含文件。你可能会失去变量作用域,可能不得不使用“global”。只需循环文件。

另外,当一个包含的文件的类名将扩展到另一个文件中定义的另一个类时,您可能会遇到困难——这个文件还没有包含。所以,要小心。

下面是我从PHP 5的几个文件夹中包含大量类的方法。但这只在你有课的时候才有效。

/*Directories that contain classes*/
$classesDir = array (
    ROOT_DIR.'classes/',
    ROOT_DIR.'firephp/',
    ROOT_DIR.'includes/'
);
function __autoload($class_name) {
    global $classesDir;
    foreach ($classesDir as $directory) {
        if (file_exists($directory . $class_name . '.php')) {
            require_once ($directory . $class_name . '.php');
            return;
        }
    }
}