|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2019-01-15 17:33 UTC] ab@php.net
-Status: Open
+Status: Duplicate
[2019-01-15 17:33 UTC] ab@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 17:00:02 2025 UTC |
Description: ------------ LDAPBIND causes the script to crash to OS. Sample code below. It works as expected in all previous versions of PHP 7.2.x, 7.1.x, 7.0.x etc. Not tested with 7.3.1. Test script: --------------- $ldapconn = ldap_connect('ldaps://my.ldap.url'); if ($ldapconn) { try { $ldapbind = ldap_bind($ldapconn, 'myuser', 'mypass'); echo 'This is never displayed'; } catch (Exception $e) { echo 'This never gets displayed'; } }