修改 PHP system() 调用的 $PATH
我需要修改 mac 上的 $PATH 以便 PHP system() 调用能够识别它。
到目前为止,我已经编辑了 /etc/profile 以包含以下行:
export PATH=$PATH:/Applications/MAMP/Library/bin
但是如果我在 PHP 中执行 system('echo $PATH');
,则新路径不会显示。
I need to modify the $PATH on my mac so that PHP system() calls will recognize it.
So far I've edited the /etc/profile to include the line:
export PATH=$PATH:/Applications/MAMP/Library/bin
but if I do system('echo $PATH');
in PHP the new path doesn't show up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 putenv 函数。例如,要将当前目录添加到 $PATH,可以使用以下代码:
http://php.net/putenv
Use the putenv function. For example, to add the current directory to the $PATH, one could use the following code :
http://php.net/putenv