We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code:
<?php new LDAP\Connection;
Resulted in this output:
Error: Cannot directly construct LDAP\Connection, use ldap_create() instead
But I expected this output instead:
Error: Cannot directly construct LDAP\Connection, use ldap_connect() instead
PHP 8.2.0
No response
The text was updated successfully, but these errors were encountered:
Looks like a simple mistake introduced with 8.1.0 when the extension was converted to use objects. cd40fc3
Sorry, something went wrong.
Fix phpGH-10112: LDAP\Connection::__construct() refers to ldap_create()
638c38b
There is no `ldap_create()`, but rather `ldap_connect()`.
b8ac207
Merge branch 'PHP-8.1' into PHP-8.2
018fbd0
* PHP-8.1: Fix GH-10112: LDAP\Connection::__construct() refers to ldap_create()
Merge branch 'PHP-8.2'
cea0fc0
* PHP-8.2: Fix GH-10112: LDAP\Connection::__construct() refers to ldap_create()
Successfully merging a pull request may close this issue.
Description
The following code:
Resulted in this output:
But I expected this output instead:
PHP Version
PHP 8.2.0
Operating System
No response
The text was updated successfully, but these errors were encountered: