|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesset_include_path-array_input (last revision 2012-04-26 17:55 UTC by roeitell at gmail dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-04-26 17:58 UTC] roeitell at gmail dot com
[2015-08-31 17:52 UTC] cmb@php.net
[2021-04-01 16:31 UTC] cmb@php.net
-Status: Open
+Status: Wont fix
-Assigned To:
+Assigned To: cmb
[2021-04-01 16:31 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 16:00:01 2025 UTC |
Description: ------------ Include path handling functions should work with arrays. The should be an add_include_path() function. Test script: --------------- set_include_path( array( '/path/to/my/lib', '/path/to/pear/', ) ); $arPaths = get_include_path($bReturnAsArray = true); add_include_path('/path/to/other/lib', INSERT_FIRST|INSERT_LAST); add_include_path( array( '/path/to/other/lib', '/path/to/pyrus/', ), INSERT_FIRST|INSERT_LAST );