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.
我有一个 htaccess 和 htpasswd 文件。我希望如果例如:user1 登录给一个消息,欢迎'user1'!
我的主要问题是我不知道如何告诉 php 文件 user1 已登录...
我相信您可以通过以下方式访问已登录的用户:
$_SERVER['PHP_AUTH_USER']
自从我上次使用它已经有一段时间了
if (isset($_SERVER['PHP_AUTH_USER'])) { echo "Hello {$_SERVER['PHP_AUTH_USER']}!"; }