16 lines
297 B
Plaintext
16 lines
297 B
Plaintext
|
|
--TEST--
|
||
|
|
Attempt to instantiate an LDAP\Connection directly
|
||
|
|
--EXTENSIONS--
|
||
|
|
ldap
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
try {
|
||
|
|
new LDAP\Connection();
|
||
|
|
} catch (Error $ex) {
|
||
|
|
echo "Exception: ", $ex->getMessage(), "\n";
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
Exception: Cannot directly construct LDAP\Connection, use ldap_connect() instead
|