在我的根文件夹中,我有一个文件夹,其中包含我在不同项目之间使用的常用文件。/files 我有一个文件 redis.php,其中包含我想在 /var/www/html/project/example.php 中的一个项目中使用的 Redis 类 Redis 类位于 /file/library/storage/redis/ redis.php
我的 redis.php 有
<?php
namespace file\library\storage\redis;
class Redis{
public function init(){
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
}
}
?>
在我的 example.php 中,我称该命名空间为
$redis = new \file\library\storage\redis\Redis();
$redis->init();
但它给了我一个错误
[Mon May 27 12:25:48 2013] [error] [client 127.0.0.1] PHP Fatal error: Class 'file\\library\\storage\\redis\\Redis' not found
任何帮助将不胜感激