从 PHP 读取用户主目录
我无法找到一种方法来使用 CGI (suPHP) 在 PHP 中获取用户的主目录(例如 /home/jack;无论 bash 中的 ~ 指向什么)。 $_ENV 数组为空,并且 getenv('HOME') 不返回任何内容。
我想要这样做的原因是,在没有配置的情况下,我想在 /home/user/.myappnamehere 中找到我的应用程序使用的变量文件,就像大多数 Linux 应用程序所做的那样。
我已经构建了一些东西,但它不是最好的;虽然它可以工作,但它对系统做了很多假设(例如 /etc/passwd 的存在)
$usr = get_current_user();
$passwd = file('/etc/passwd');
$var = false;
foreach ($passwd as $line) {
if (strstr($line, $usr) !== false) {
$parts = explode(':', $line);
$var = realpath($parts[5].'/.report');
break;
}
}
I cannot find a way to get the user's home directory (e.g. /home/jack; whatever ~ in bash points to) in PHP using CGI (suPHP). The $_ENV array is empty, and getenv('HOME') returns nothing.
The reason I want to do this is that in absense of configuration saying otherwise, I want to find variable files used by my application in /home/user/.myappnamehere, as most Linux applications do.
I've built something, but it's not the best; While it works, it assumes a lot about the system (e.g. the presence of /etc/passwd)
$usr = get_current_user();
$passwd = file('/etc/passwd');
$var = false;
foreach ($passwd as $line) {
if (strstr($line, $usr) !== false) {
$parts = explode(':', $line);
$var = realpath($parts[5].'/.report');
break;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您想要以下任一结果:
http://us.php.net/manual/en/function.getmyuid.php 或
http://us.php.net/manual/en/function.posix -getuid.php 发送至
http://us.php.net/manual/en/function.posix -getpwuid.php
I think you want the result of either:
http://us.php.net/manual/en/function.getmyuid.php or
http://us.php.net/manual/en/function.posix-getuid.php sent to
http://us.php.net/manual/en/function.posix-getpwuid.php
如果
安全模式
被禁用,请尝试这个If
safemode
is disabled, try this one