Home
last modified time | relevance | path

Searched refs:include_path (Results 1 – 25 of 91) sorted by relevance

1234

/PHP-5.5/ext/standard/tests/streams/
H A Dstream_resolve_include_path.phpt5 $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');
19 set_include_path($include_path . PATH_SEPARATOR . $include_path_nested);
22 set_include_path($include_path . PATH_SEPARATOR . $include_path_nested);
24 set_include_path($include_path_nested . PATH_SEPARATOR . $include_path);
30 rmdir($include_path);
/PHP-5.5/tests/func/
H A D007.phpt6 $ini1 = ini_get('include_path');
7 ini_set('include_path','ini_set_works');
8 echo ini_get('include_path')."\n";
9 ini_restore('include_path');
10 $ini2 = ini_get('include_path');
/PHP-5.5/ext/standard/tests/general_functions/
H A Dget_include_path_basic.phpt4 include_path=.
8 * Description: Gets the current include_path configuration option
16 if (ini_get("include_path") == get_include_path()) {
/PHP-5.5/ext/phar/tests/
H A Dinclude_path_advanced.phpt2 Phar: include_path advanced code coverage test
8 files/include_path.phar
H A Dinclude_path.phpt2 Phar: include_path with phar:// wrapper
33 Warning: include(): Failed opening 'file2.php' for inclusion (include_path='%sphar://%stempmanifest…
/PHP-5.5/ext/standard/tests/file/
H A Dinclude_streams.phpt2 Stream wrappers in include_path
109 $include_path = get_include_path();
110 set_include_path($include_path . PATH_SEPARATOR . "test://GLOBALS");
115 set_include_path("test://GLOBALS" . PATH_SEPARATOR . $include_path);
H A Dreadfile_variation3.phpt26 // including $dirname in 'include_path'
27 ini_set('include_path',$dirname);
28 // 'include_path' set to true
H A Dbug35740.phpt13 Warning: include(): Failed opening '%s' for inclusion (include_path='%s') in %s on line %d
/PHP-5.5/ext/spl/examples/
H A Dautoload.inc31 * Loads classes automatically from include_path as given by ini or from
36 $inc = split(':', ini_get('include_path'));
/PHP-5.5/ext/spl/tests/
H A Dfileobject_getmaxlinelen_basic.phpt7 include_path=.
H A Dfileobject_setmaxlinelen_basic.phpt7 include_path=.
H A Dfileobject_getmaxlinelen_error001.phpt6 include_path=.
H A Dspl_autoload_009.phpt4 include_path=.
H A Dfileobject_getsize_basic.phpt7 include_path=.
H A Dspl_autoload_006.phpt4 include_path=.
H A Dfileobject_004.phpt2 SPL: SplFileObject realpath and include_path
H A Dspl_autoload_010.phpt4 include_path=.
H A Dspl_autoload_011.phpt4 include_path=.
H A Dspl_autoload_004.phpt4 include_path=.
H A DSplFileObject_setCsvControl_error003.phpt6 include_path=.
H A Dspl_autoload_003.phpt4 include_path=.
/PHP-5.5/sapi/cli/tests/
H A Dbug67741.phpt4 include_path={PWD}
/PHP-5.5/tests/lang/
H A Dbug32924.phpt4 include_path={PWD}
/PHP-5.5/ext/mbstring/tests/
H A Dbug20087.phpt9 ini_set('include_path', dirname(__FILE__));
/PHP-5.5/ext/opcache/
H A DZendAccelerator.c205 ZCG(include_path) = new_value; in ZEND_INI_MH()
206 if (ZCG(include_path) && *ZCG(include_path)) { in ZEND_INI_MH()
241 ZCG(include_path) = ""; in ZEND_INI_MH()
928 char *include_path = NULL; in accel_make_persistent_key_ex() local
949 include_path = ZCG(include_path_key); in accel_make_persistent_key_ex()
952 include_path = ZCG(include_path); in accel_make_persistent_key_ex()
965 include_path = ZCG(include_path_key); in accel_make_persistent_key_ex()
976 include_path = ZCG(include_path_key); in accel_make_persistent_key_ex()
2611 ZCG(include_path) = INI_STR("include_path");
2613 if (ZCG(include_path) && *ZCG(include_path)) {
[all …]

Completed in 67 milliseconds

1234