2 Test get_include_path() function
7 /* Prototype: string get_include_path ( void )
8 * Description: Gets the current include_path configuration option
12 echo "*** Testing get_include_path()\n";
14 var_dump(get_include_path());
16 if (ini_get("include_path") == get_include_path()) {
24 *** Testing get_include_path()