当我声明了我的自定义命名空间时,我不能使用 PEAR 库。
命名空间和自动加载功能:
<?php
namespace ldapwrangler;
function autoload($class_name)
{
$path = ROOT_DIR . "/inc/" . str_replace('\\', "/", $class_name) . ".class.php";
require_once($path);
}
spl_autoload_register('ldapwrangler\autoload');
?>
如果我尝试这样的 ROOT_DIR/inc/ldapwrangler/LDAP.class.php:
<?php
namespace ldapwrangler;
require_once 'Net/LDAP2.php';
class LDAP{
protected $connection;
protected $defaultSearchBase;
/**
* @param $conf conf array containing ldap direction login and server.
*/
function __construct($conf)
{
$this->connection = $this->set_connection($conf);
$this->defaultSearchBase = $conf['basedn'];
}
/**
* Bind to the directory configured in the $conf array
*
* @param $conf conf array containing ldap direction login and server.
*/
function set_connection($conf)
{
$ldap = Net_LDAP2::connect($conf);
// Testing for connection error
if (PEAR::isError($ldap)) {
$msg = 'Could not connect to LDAP server: '.$ldap->getMessage();
Logging::log_message('error',$msg);
return false;
}
return $ldap;
}
//rest of the class...
}
?>
我收到这样的错误:
5 月 29 日 10:03:32 reagand-desktop apache2: PHP 致命错误: require_once(): 无法打开所需的 '/home/reagand/dev/ldap_wrangler/inc/ldapwrangler/Net_LDAP2.class.php' (include_path='.:/ usr/share/php:/usr/share/pear') 在第 18 行的 /home/reagand/dev/ldap_wrangler/config.php
仅供参考,第 18 行是 autoload 函数的 require_once() 部分。
如何告诉 php 不要为 Net_LDAP2 类使用 ldapwrangler 命名空间?或任何其他非 ldapwrangler 类,就此而言。