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.

link|improve this question

80% accept rate
Did you restart the shell (e.g. log out/back in) to get the new profile settings? – Marc B Feb 28 '11 at 15:57
@Marc B- yes, restarted. – Yarin Feb 28 '11 at 16:10
Make sure that the shell PHP is using for the exec call actually uses /etc/profile. subshells may ignore it. – Marc B Feb 28 '11 at 16:12
@Marc B- good point, I'll look into it – Yarin Feb 28 '11 at 16:35
Related. – Dennis Williamson Feb 28 '11 at 16:53
feedback

1 Answer

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

link|improve this answer
@Artefact2- Thanks, but I'm looking for a way to modify the system environment permanently, not through code. – Yarin Feb 28 '11 at 16:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.