php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #53121 Include path cannot be appended to for default include_path
Submitted: 2010-10-20 21:59 UTC Modified: 2021-07-18 04:22 UTC
Votes:4
Avg. Score:3.8 ± 0.8
Reproduced:2 of 2 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: gopalv@php.net Assigned: cmb (profile)
Status: No Feedback Package: *Configuration Issues
PHP Version: 5.3SVN-2010-10-20 (snap) OS: ubuntu
Private report: No CVE-ID: None
Have you experienced this issue?
Rate the importance of this bug to you:

 [2010-10-20 21:59 UTC] gopalv@php.net
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


Patches

Add a Patch

Pull Requests

Pull requests:

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2010-10-20 22:03 UTC] gopalv@php.net
The append works just fine when an explicit include_path is provided in a php.ini file.

This is breaking my php.d/ directory right now.
 [2020-01-10 20:26 UTC] turfmaster dot top at gmail dot com
The following pull request has been associated:

Patch Name: Fix force push
On GitHub:  https://github.com/php/pecl-web_services-oauth/pull/13
Patch:      https://github.com/php/pecl-web_services-oauth/pull/13.patch
 [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
Since include_path is PHP_INI_ALL, it can be even set during
runtime (possibly using auto_prepend_file).  Alternatively, you can
set an environment variable, and use that in your php.ini.  So
this is more like a feature request, but I wonder whether it is
even relevant nowadays.
 [2021-07-18 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 05:01:29 2024 UTC