修改 PHP system() 调用的 $PATH

发布于 2024-10-19 17:38:03 字数 236 浏览 1 评论 0原文

我需要修改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

英雄似剑 2024-10-26 17:38:03

使用 putenv 函数。例如,要将当前目录添加到 $PATH,可以使用以下代码:

<?php
putenv('PATH='.getenv('PATH').':.');   
echo shell_exec('echo $PATH'); /* Prints the expected result */

http://php.net/putenv

Use the putenv function. For example, to add the current directory to the $PATH, one could use the following code :

<?php
putenv('PATH='.getenv('PATH').':.');   
echo shell_exec('echo $PATH'); /* Prints the expected result */

http://php.net/putenv

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文