我正在学习PHP 5.3中的命名空间,我想使用命名空间自动加载。我找到了这个SplClassLoader class,但我无法弄清楚它是如何工作的。
假设我有这样的目录结构:
system
- framework
- http
- request.php
- response.php
index.php
SplClassLoader.php
如何启用类自动加载? request.php
和response.php
应包含哪些名称空间?
这是request.php
:
namespace framework\http;
class Request
{
public function __construct()
{
echo __CLASS__ . " constructer!";
}
}
这是response.php
:
namespace framework\http;
class Request
{
public function __construct()
{
echo __CLASS__ . " constructed!";
}
}
在index.php
我有:
require_once("SplClassLoader.php");
$loader = new SplClassLoader('framework\http', 'system/framework');
$loader->register();
$r = new Request();
我收到此错误消息:
Fatal error: Class 'Request' not found in C:\wamp\apache\htdocs\php_autoloading\index.php on line 8
为什么这不起作用?如何在我的项目中使用SplClassLoader
,以便加载/需要我的类,以及如何设置和命名文件夹和命名空间?
答案 0 :(得分:11)
您的文件和目录名称必须与您的类和名称空间完全匹配,如下例所示:
system
- framework
- http
- Request.php
- Response.php
index.php
SplClassLoader.php
此外,您只需在注册SplClassLoader对象时声明根命名空间,如下所示:
<?php
require_once("SplClassLoader.php");
$loader = new SplClassLoader('framework', 'system/framework');
$loader->register();
use framework\http\Request;
$r = new Request();
?>
希望这有帮助!