|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-03-26 21:07 UTC] johannes@php.net
-Status: Open
+Status: Bogus
[2010-03-26 21:07 UTC] johannes@php.net
[2010-03-26 21:44 UTC] ericp at activestate dot com
[2010-03-26 21:49 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 02 23:00:01 2025 UTC |
Description: ------------ If I try to specify more than one include_path directive on the command-line, only one sticks. WIth the following two command-lines, I expected to see two entries, but only saw the first. 1. Default case -- I see all three entries from my php.ini $ php test.php include_path=.;C:\apps\xampp\php\PEAR;c:\apps\smarty\libs $ php -d include_path=c:\php-5.2.8\PEAR;c:\php-5.2.8\PEAR\phpunit test.php include_path=c:\php-5.2.8\PEAR I was expecting to see both entries, not just the first. I'd also like an option to add to the existing include_path setting, not just override it. $ php -d include_path=c:\php-5.2.8\PEAR -d include_path=c:\php-5.2.8\PEAR\phpunit test.php include_path=c:\php-5.2.8\PEAR\phpunit Here I get the second entry only. Test script: --------------- <?php print "include_path="; print ini_get("include_path"); print "\n"; ?> Expected result: ---------------- See the description. Actual result: -------------- See the description.