我正在进行一个项目,其中我有以下文件结构:
index.php
|---lib
|--|lib|type|class_name.php
|--|lib|size|example_class.php
我想自动加载class_name和example_class(与PHP类的名称相同),这样在index.PHP中这些类就已经实例化了,所以我可以这样做:
$class_name->getPrivateParam('name');
我上网查了一下,但找不到正确的答案——有人能帮我吗?
编辑
谢谢你的回复。让我详细介绍一下我的设想。我正在尝试编写一个WordPress插件,它可以被放入项目中,并通过将类放入文件夹"功能"来添加额外的功能,例如,在插件内部。永远不会有1000节课,一推可能有10节?
我可以写一个方法来遍历"lib"文件夹的文件夹结构,包括每个类,然后将其分配给(类名的)变量,但我不认为这是一种非常有效的方法,但这似乎是实现我所需要的最好方法?
请注意,如果您需要自动加载类-使用SPL自动加载的命名空间和类名约定,这将节省重构时间。当然,您需要将每个类实例化为一个对象。非常感谢。
类似于此线程:PHP在命名空间中的自动加载
但是,如果您想要一个复杂的解决方法,请查看Symfony的自动加载类:https://github.com/symfony/ClassLoader/blob/master/ClassLoader.php
或者像这样(我在我的一个项目中做过):
<?
spl_autoload_register(function($className)
{
$namespace=str_replace("\","/",__NAMESPACE__);
$className=str_replace("\","/",$className);
$class=CORE_PATH."/classes/".(empty($namespace)?"":$namespace."/")."{$className}.class.php";
include_once($class);
});
?>
然后你可以像这样实例化你的类:
<?
$example=new NS1NS2ExampleClass($exampleConstructParam);
?>
这是您的类(位于/NS1/NS2/ExampleClass.class.php中):
<?
namespace NS1NS2
{
class Symbols extends DBTable
{
public function __construct($param)
{
echo "hello!";
}
}
}
?>
如果您可以访问命令行,您可以在classMap部分使用composer来尝试它,如下所示:
{
"autoload": {
"classmap": ["yourpath/", "anotherpath/"]
}
}
然后您有一个wordpress插件,可以在wordpress-cli中启用composer:http://wordpress.org/plugins/composer/
function __autoload($class_name) {
$class_name = strtolower($class_name);
$path = "{$class_name}.php";
if (file_exists($path)) {
require_once($path);
} else {
die("The file {$class_name}.php could not be found!");
}
}
更新:__autoload()
从PHP 7.2起已弃用
http://php.net/manual/de/function.spl-autoload-register.php
spl_autoload_register(function ($class) {
@require_once('lib/type/' . $class . '.php');
@require_once('lib/size/' . $class . '.php');
});
这里有一个用于自动加载和初始化的示例
基本上是spl_autoload_register的更好版本,因为它只在初始化类时尝试要求类文件
在这里,它会自动获取类文件夹中的每个文件,需要这些文件并初始化它。你所要做的就是将类命名为与文件相同的名称
index.php
<?php
require_once __DIR__ . '/app/autoload.php';
$loader = new Loader(false);
User::dump(['hello' => 'test']);
自动加载.php
<?php
class Loader
{
public static $library;
protected static $classPath = __DIR__ . "/classes/";
protected static $interfacePath = __DIR__ . "/classes/interfaces/";
public function __construct($requireInterface = true)
{
if(!isset(static::$library)) {
// Get all files inside the class folder
foreach(array_map('basename', glob(static::$classPath . "*.php", GLOB_BRACE)) as $classExt) {
// Make sure the class is not already declared
if(!in_array($classExt, get_declared_classes())) {
// Get rid of php extension easily without pathinfo
$classNoExt = substr($classExt, 0, -4);
$file = static::$path . $classExt;
if($requireInterface) {
// Get interface file
$interface = static::$interfacePath . $classExt;
// Check if interface file exists
if(!file_exists($interface)) {
// Throw exception
die("Unable to load interface file: " . $interface);
}
// Require interface
require_once $interface;
//Check if interface is set
if(!interface_exists("Interface" . $classNoExt)) {
// Throw exception
die("Unable to find interface: " . $interface);
}
}
// Require class
require_once $file;
// Check if class file exists
if(class_exists($classNoExt)) {
// Set class // class.container.php
static::$library[$classNoExt] = new $classNoExt();
} else {
// Throw error
die("Unable to load class: " . $classNoExt);
}
}
}
}
}
/*public function get($class)
{
return (in_array($class, get_declared_classes()) ? static::$library[$class] : die("Class <b>{$class}</b> doesn't exist."));
}*/
}
您可以通过一些编码轻松管理,也可以要求不同文件夹中的类
希望这对你有用。
您可以使用此自动加载器指定命名空间友好的自动加载。
<?php
spl_autoload_register(function($className) {
$file = __DIR__ . '\' . $className . '.php';
$file = str_replace('\', DIRECTORY_SEPARATOR, $file);
if (file_exists($file)) {
include $file;
}
});
请确保正确指定了类文件的位置。
源
spl_autoload_register(function ($class_name) {
$iterator = new DirectoryIterator(dirname(__FILE__));
$files = $iterator->getPath()."/classes/".$class_name.".class.php";
if (file_exists($files)) {
include($files);
} else {
die("Warning:The file {$files}.class.php could not be found!");
}
});
在一个文件中执行此操作,并将其命名为类似(mr_load.php)这是你把所有的课都放在上的
spl_autoload_register(function($class){
$path = 'Applicaton/classes/';
$extension = '.php';
$fileName = $path.$class.$extension;
include $_SERVER['DOCUMENT_ROOT'].$fileName;
})
- 然后创建另一个文件并包含mr_load.php$load_class=新的BusStop()$load_class->method()