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 178 views
1 answer 158 views
2 answers 238 views
1 answer 158 views
1 answer 178 views
3 answers 215 views
...