⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 03-ct_ldap.sgml

📁 PHPLOB注释详细版 使用模板技术的好帮手 PHP最有用的东东了
💻 SGML
字号:
<!-- $Id: 03-ct_ldap.sgml,v 1.1.1.1 2000/04/17 16:40:01 kk Exp $ --><sect1>CT_Ldap<p>The <tt/Session/ class used to contain a bit of SQL to read andwrite session data from and to a database. To make sessionsdatabase independent, <tt/Session/ now makes all storageaccesses through a container class. To let <tt/Session/ use aLDAP database as a container, you use <tt/CT&lowbar;Ldap/.<sect2>Instance variables<p><table><tabular ca="">ldap&lowbar;host<colsep>This is the hostname of the LDAP server to connect to<rowsep>ldap&lowbar;port<colsep>And this is its port (LDAP default is 389)<rowsep>basedn<colsep>This is the basedn<rowsep>rootdn<colsep>This is the rootdn which is required to modify the database<rowsep>rootpw<colsep>The respective password for rootdn<rowsep>objclass<colsep>The objectclass for PHPLIB's data<rowsep></tabular><caption>Accessible instance variables.</caption></table><sect2>Example<p>Use a subclass to provide the appropriate parameters to your container. Usually your subclass looks like this: <tscreen><code>class My&lowbar;Ldap extends CT&lowbar;Ldap {	var $classname = "My&lowbar;Ldap";	var $ldap&lowbar;host = "localhost";	var $ldap&lowbar;port = 389;	var $basedn = "dc=your-domain, dc=com";	var $rootdn = "cn=root, dc=your-domain, dc=com";	var $rootpw = "secret";	var $objclass = "phplibdata";}</code></tscreen>You can then use My&lowbar;Ldap in class Session. Reference itby putting "My&lowbar;Ldap" in the "that&lowbar;class" variable.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -