在PHP中,我可以包括一个脚本目录吗?
例如:
include('classes/Class1.php');
include('classes/Class2.php');
比如:
include('classes/*');
似乎找不到一个好方法来为一个特定的类包含大约10个子类的集合。
在PHP中,我可以包括一个脚本目录吗?
例如:
include('classes/Class1.php');
include('classes/Class2.php');
比如:
include('classes/*');
似乎找不到一个好方法来为一个特定的类包含大约10个子类的集合。
当前回答
你可以使用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文档推荐:自动加载类
答案是从另一个问题转过来的。包括关于使用辅助函数的限制的附加信息,以及用于加载所包含文件中的所有变量的辅助函数。
在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按需自动加载它们是个好主意。使用自动加载器假设您已经构造了文件系统,并且一致地命名了类和名称空间。
这是一个后期的回答,涉及到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;
我建议您使用readdir()函数,然后循环并包含文件(请参阅该页上的第一个示例)。
<?php
//Loading all php files into of functions/ folder
$folder = "./functions/";
$files = glob($folder."*.php"); // return array files
foreach($files as $phpFile){
require_once("$phpFile");
}