Lines Matching refs:include_path
5 $include_path = __DIR__ . '/test_path';
6 $include_path_nested = $include_path . '/nested';
8 $include_path_file = $include_path . DIRECTORY_SEPARATOR . 'file';
11 mkdir($include_path);
14 file_put_contents($include_path_file, 'include_path');
15 file_put_contents($include_path_nested_file, 'include_path');
17 set_include_path($include_path . PATH_SEPARATOR . $include_path_nested);
20 set_include_path($include_path . PATH_SEPARATOR . $include_path_nested);
22 set_include_path($include_path_nested . PATH_SEPARATOR . $include_path);
28 $include_path = __DIR__ . '/test_path';
29 $include_path_nested = $include_path . '/nested';
30 $include_path_file = $include_path . DIRECTORY_SEPARATOR . 'file';
36 rmdir($include_path);