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

例如:

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

比如:

include('classes/*');

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


当前回答

这是一个后期的回答,涉及到PHP > 7.2到PHP 8。

OP在标题中没有询问职业,但从他的措辞中我们可以看出他想要包括职业。(顺便说一句。此方法也适用于名称空间)。

使用require_once,你可以用一条毛巾杀死三只蚊子。

首先,如果文件不存在,您将在日志文件中以错误消息的形式得到有意义的重击。这在调试时非常有用。(include只会生成一个可能不那么详细的警告) 只包含包含类的文件 您可以避免加载一个类两次

spl_autoload_register( function ($class_name) {
    require_once  '/var/www/homepage/classes/' . $class_name . '.class.php';
} );

这将适用于类

new class_name;

或名称空间。如……

use homepage\classes\class_name;

其他回答

答案是从另一个问题转过来的。包括关于使用辅助函数的限制的附加信息,以及用于加载所包含文件中的所有变量的辅助函数。

在PHP中没有原生的“从文件夹中包含所有内容”。然而,实现起来并不复杂。你可以glob .php文件的路径,并在循环中包含这些文件:

foreach (glob("test/*.php") as $file) {
    include_once $file;
}

在这个答案中,我使用include_once来包含文件。如果需要,请随意更改为include、require或require_once。

你可以把它变成一个简单的帮助函数:

function import_folder(string $dirname) {
    foreach (glob("{$dirname}/*.php") as $file) {
        include_once $file;
    }
}

如果你的文件定义的类、函数、常量等是独立于作用域的,这将如预期的那样工作。但是,如果您的文件有变量,则必须使用get_defined_vars()“收集”它们,并从函数中返回它们。否则,它们将“丢失”到函数作用域中,而不是导入到原始作用域中。

如果你需要从函数中的文件中导入变量,你可以:

function load_vars(string $path): array {
    include_once $path;
    unset($path);
    return get_defined_vars();
}

这个函数(可以与import_folder结合使用)将返回一个数组,其中包含包含的文件中定义的所有变量。如果你想从多个文件中加载变量,你可以:

function import_folder_vars(string $dirname): array {
    $vars = [];
    foreach (glob("{$dirname}/*.php") as $file) {

        // If you want to combine them into one array:
        $vars = array_merge($vars, load_vars($file)); 

        // If you want to group them by file:
        // $vars[$file] = load_vars($file);
    }
    return $vars;
}

根据您的偏好(根据需要注释/取消注释),上面的方法将包含的文件中定义的所有变量作为一个数组返回,或者按定义它们的文件分组。

最后需要注意的是:如果您所需要做的只是加载类,那么使用spl_autoload_register按需自动加载它们是个好主意。使用自动加载器假设您已经构造了文件系统,并且一致地命名了类和名称空间。

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

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

这只是卡斯顿代码的修改

function include_all_php($folder){
    foreach (glob("{$folder}/*.php") as $filename)
    {
        include $filename;
    }
}

include_all_php("my_classes");

如果文件之间没有依赖关系…下面是一个递归函数来包含所有子dirs中的include_once所有php文件:

$paths = array();

function include_recursive( $path, $debug=false){
  foreach( glob( "$path/*") as $filename){        
    if( strpos( $filename, '.php') !== FALSE){ 
       # php files:
       include_once $filename;
       if( $debug) echo "<!-- included: $filename -->\n";
    } else { # dirs
       $paths[] = $filename; 
    }
  }
  # Time to process the dirs:
  for( $i=count($paths)-1; $i>0; $i--){
    $path = $paths[$i];
    unset( $paths[$i]);
    include_recursive( $path);
  }
}

include_recursive( "tree_to_include");
# or... to view debug in page source:
include_recursive( "tree_to_include", 'debug');

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文档推荐:自动加载类