<?php
include(dirname(__FILE__).'/Adldap.php');
use Adldap\Adldap;
$config = array(
'account_suffix' => "@canoas.unilasalle.edu.br",
'domain_controllers' => array("svr-dc01.canoas.unilasalle.edu.br"),
'base_dn' => 'dc=canoas,dc=unilasalle,dc=edu,dc=br',
'admin_username' => 'login',
'admin_password' => '******',
);
$ad = new Adldap($config);
?>
尝试访问Fatal error: Class 'adLDAP' not found,这有效,然后在测试该类后出现此错误:
致命错误:在第 24 行的 C:\xampp\htdocs\ad\index.php 中找不到类 'Adldap\Interfaces\ConnectionInterface'
我不知道发生了什么,因为 Adldap.php 类包含了。