|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2010-10-20 22:03 UTC] gopalv@php.net
[2020-01-10 20:26 UTC] turfmaster dot top at gmail dot com
[2021-07-09 16:49 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Type: Bug
+Type: Feature/Change Request
-Assigned To:
+Assigned To: cmb
[2021-07-09 16:49 UTC] cmb@php.net
[2021-07-18 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 11:00:01 2025 UTC |
Description: ------------ The default php include_path cannot be appended to by using ${include_path} I have a machine which has no include_path set in php.ini, the system picks up the default include_path path from the build-defs.h during the build. gopalv@delta:~$ /opt/php53/bin/php -v PHP 5.3.4-dev (cli) (built: Oct 12 2010 18:47:42) Copyright (c) 1997-2010 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies gopalv@delta:~$ /opt/php53/bin/php -i | grep include_path include_path => .:/opt/php53//lib/php => .:/opt/php53//lib/php gopalv@delta:~$ cat php-bug.ini include_path=${include_path}:/tmp gopalv@delta:~$ /opt/php53/bin/php -c php-bug.ini -i | grep include_path include_path => :/tmp => :/tmp Test script: --------------- gopalv@delta:~$ cat php-bug.ini include_path=${include_path}:/tmp gopalv@delta:~$ /opt/php53/bin/php -c php-bug.ini -i | grep include_path include_path => :/tmp => :/tmp Expected result: ---------------- include_path => .:/opt/php53//lib/php:/tmp => .:/opt/php53//lib/php:/tmp Actual result: -------------- include_path => :/tmp => :/tmp