# cd /usr/src/php-7.2.7/ext/ldap/   # 进入模块所在的源码位置 
# ls
config.m4  config.w32  CREDITS  ldap.c  ldap.mak  LDAP_Win32_HOWTO.txt  php_ldap.h  tests
# /usr/local/php/bin/phpize    # 编译PHP扩展的工具,主要是根据系统信息生成对应的configure文件
Configuring for:
PHP Api Version:         20170718
Zend Module Api No:      20170718
Zend Extension Api No:   320170718
# ./configure  --with-php-config=/usr/local/php/bin/php-config  --with-ldap  && make && make install   #配置 编译 安装

执行过程中可能会有如下报错

configure: error: Cannot find ldap.h  解决办法 : yum -y install openldap openldap-devel

configure: error: Cannot find ldap libraries in /usr/lib  解决办法 : cp -frp /usr/lib64/libldap* /usr/lib/

# vim /etc/php.ini      # 编辑php.ini
# 找到 ;extension=ldap 的行 把注销去掉 , 5版本的php添加extension=ldap.so

保存退出 , 重启web服务

如果是yum安装

[root@DaMoWang ldap]# yum -y install php-ldap
然后重启web服务

Copyright © 2014-2024 it689.com (京ICP备12032795号-2) 版权所有 Power by IT689