|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-11-10 05:07 UTC] pop3 at flachtaucher dot de
[2009-11-10 09:09 UTC] magicaltux@php.net
[2009-11-21 00:54 UTC] pop3 at flachtaucher dot de
[2010-05-21 23:33 UTC] magicaltux@php.net
[2011-04-28 07:03 UTC] bjori@php.net
[2017-10-24 06:43 UTC] kalle@php.net
-Status: Assigned
+Status: Open
-Assigned To: magicaltux
+Assigned To:
[2017-10-24 23:23 UTC] kalle@php.net
-Status: Open
+Status: Suspended
[2017-10-24 23:23 UTC] kalle@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 13 12:00:01 2025 UTC |
Description: ------------ On Centos 5.3 64-bit a call to setproctitle will modify my $PATH variable that is used for exec() or system(). Reproduce code: --------------- <?php echo "Path before call: "; system('echo $PATH')."\n"; setproctitle('hello world'); echo "Path after call: "; system('echo $PATH')."\n"; ?> Expected result: ---------------- Output after "Path before call:" matches that of "Path after call:" Actual result: -------------- Paths do NOT match. Therefore path was modified by this module.