Get Windows username of current user using php? [duplicate]

两盒软妹~` 提交于 2019-12-17 19:36:38

问题


Possible Duplicate:
How to read Windows loged in username with PHP/IIS

I'm work on php tool that generate Data Access layer and generate some folders and files to user but i need to know how can i get username for current windows user to generate these folders on desktop

ex:
C:\\users\\<username>\\desktop

I need to know the username. Thanks


回答1:


If by current windows user you mean the user running the script then that is set in an environment variable which you can get using:

<?php echo getenv("username"); ?>

If you want to get the home directory of the user running the script you should use

<?php echo getenv("HOMEDRIVE") . getenv("HOMEPATH"); ?>

This should output either C:\Users\Fred or C:\Documents and Settings\Fred depending on if you are using windows Vista/7 or windows XP.

To see all of the environment variables you can do:

<?php global $_ENV; var_dump($_ENV); ?>


来源:https://stackoverflow.com/questions/12754437/get-windows-username-of-current-user-using-php

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!