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.
因此,我一直在尝试su - username -c whoami使用 shell_exec() 运行以下命令,但我得到的唯一结果是 NULL。在 PHP 交互模式下运行、以nginx用户身份登录或通过 Apache 运行时,我得到正确的输出。一切都很完美。这是我的代码:
su - username -c whoami
nginx
var_dump(shell_exec('su - username -c whoami'));
我怀疑这与 PHP-FPM 有关。有什么想法吗,伙计们?