Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将资源链接标识符(特别是 LDAP 连接链接)存储在全局变量中,并检查我的第一次初始化以仅当它尚未在$GLOBALS数组中时才创建它。
$GLOBALS
登录用户时,我使用正确的凭据绑定到 LDAP 连接,但是当我稍后尝试搜索 LDAP 目录时,我意识到连接已丢失其状态(因为我无法进行搜索)。
有没有办法跨页面保持 LDAP 连接的状态?我不能将它们存储在会话变量中,因为它们不能被序列化。
不,他们没有。就像每次请求都需要连接到数据库一样,您也需要创建到 LDAP 的新连接。
本质上:每个请求都从一个干净的状态开始,您需要获取资源,每次都打开连接。