教程
问答
博客
Python源码
Java源码
开源
论坛
教程
问答
博客
Python源码
Java源码
开源
论坛
登录
注册
开源软件
企业应用
目录服务LDAP
LDAPAuthPHP
LDAPAuthPHP
- PHP的LDAP认证
目录服务LDAP
授权协议:
Apache
操作系统:
跨平台
开发语言:
PHP
软件简介
LDAPAuthPHP 用来在 PHP 程序中执行 LDAP 身份验证。
示例代码:
session_name(‘MYAPP’);
session_start();
if (!isset($_SESSION[“user”])) {
include(“LdapAuth.inc.php”);
$ldap=new LdapAuth();
$ldap->setSessionAttr(“user”,”uid”);
$ldap->setSessionName(“MYAPP”);
$ldap->setRedirectPage($pageURL); //page where we get redirected after login
(in this case self)
include(“LdapStandalonePageProtector.inc.php”);
}
else {
echo “Logged In As: “.$_SESSION[“user”].”“;
//paste here the old page code (or write the new page to protect)
}
软件首页