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 188 views
1 answer 170 views
2 answers 253 views
1 answer 164 views
1 answer 190 views
3 answers 230 views
...