How to get the current include path configuration option in PHP

2 Answers

0 votes
echo get_include_path();


/*
run:

.;C:\php\..\include_lib

*/

 



answered Jun 22, 2016 by avibootz
0 votes
echo ini_get('include_path');


/*
run:

.;C:\php\..\include_lib

*/

 



answered Jun 22, 2016 by avibootz

Related questions

1 answer 179 views
1 answer 158 views
2 answers 239 views
1 answer 158 views
1 answer 178 views
3 answers 216 views
...