Answers:
foreach (glob("classes/*.php") as $filename)
{
include $filename;
}
get_include_path()
仍无法自动确定加载顺序(基类可能在扩展类加载后,导致错误)
这是我在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;
}
}
}
我意识到这是一个较旧的文章,但是...不要包含您的课程...而是使用__autoload
function __autoload($class_name) {
require_once('classes/'.$class_name.'.class.php');
}
$user = new User();
然后,每当您调用一个尚未包含的新类时,php就会自动触发__autoload并为您包括它
这只是对Karsten代码的修改
function include_all_php($folder){
foreach (glob("{$folder}/*.php") as $filename)
{
include $filename;
}
}
include_all_php("my_classes");
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文档在此推荐:自动加载类
autoload
只有在有人尝试创建尚未加载的类的对象时,它才会起作用。
您可以使用set_include_path:
set_include_path('classes/');
classes/
在使用include
/ 时省略require
如果要在目录及其子目录中包含所有内容:
$dir = "classes/";
$dh = opendir($dir);
$dir_list = array($dir);
while (false !== ($filename = readdir($dh))) {
if($filename!="."&&$filename!=".."&&is_dir($dir.$filename))
array_push($dir_list, $dir.$filename."/");
}
foreach ($dir_list as $dir) {
foreach (glob($dir."*.php") as $filename)
require_once $filename;
}
不要忘记,它将使用字母顺序包括您的文件。
The entries are returned in the order in which they are stored by the filesystem.
- php.net/manual/en/function.readdir.php
如果您希望包含一堆类而不必一次定义每个类,则可以使用:
$directories = array(
'system/',
'system/db/',
'system/common/'
);
foreach ($directories as $directory) {
foreach(glob($directory . "*.php") as $class) {
include_once $class;
}
}
这样,您可以只在包含该类而不是完整列表的php文件上定义该类 $thisclass = new thisclass();
至于如何处理所有文件?我不确定此速度可能会略有下降。
如果文件之间没有依赖关系...这是一个递归函数,可将ALL子目录中的所有php文件include_once包括在内:
$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');
<?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");
}
不要编写一个function()将文件包含在目录中。您可能会丢失变量作用域,并且可能必须使用“全局”。只是循环文件。
同样,当包含的文件具有将扩展到另一个文件中定义的另一个类的类名时,您可能会遇到麻烦-尚未包含。所以,要小心。