How to read Windows logged in username with PHP/IIS(如何使用 PHP/IIS 读取 Windows 登录用户名)
问题描述
我正在运行网络.这里我有一个域控制器 (DC),我刚刚在上面安装了 IIS6、PHP 和 Mysql.一切正常.:)
I am running a network. Here I have a domain controller (DC) I just installed IIS6 , PHP and Mysql on it. every thing is working fine.:)
现在我想在这个本地网站上调出一个脚本.第一个问题是我想检测哪个网络用户(活动目录用户)是用PHP登录的.我的意思是,当用户登录到 Windows 时,不需要其他身份验证就足够了.
Now I want to bring up a script on this local website. The first problem is that I want to detect which one of network users (active directory users) are logged in with PHP. I mean it is enough for me when the user is logged in to windows there is no need for another authentication.
我想知道我是否可以只使用一个函数或其他东西...它的输出是 AD 用户名和用户组.
I was wondering if I could just use a function or something... that its output is the AD username and user group.
推荐答案
如果您已将 IIS 设置为对用户进行身份验证,其中一个或多个应包含用户名:
If you've set IIS to authenticate users one or more of these should contain the username:
$_SERVER['LOGON_USER']
$_SERVER['AUTH_USER']
$_SERVER['REDIRECT_LOGON_USER']
$_SERVER['REDIRECT_AUTH_USER']
这篇关于如何使用 PHP/IIS 读取 Windows 登录用户名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 PHP/IIS 读取 Windows 登录用户名
基础教程推荐
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01