Home
last modified time | relevance | path

Searched refs:path (Results 176 – 200 of 678) sorted by relevance

12345678910>>...28

/PHP-5.5/sapi/aolserver/
H A Dconfig.m46 [ --with-aolserver=DIR Specify path to the installed AOLserver], no, no)
15 …AC_MSG_ERROR(Please specify the path to the source distribution of AOLserver using --with-aolserve…
18 AC_MSG_ERROR(Please specify the path to the root of AOLserver using --with-aolserver=DIR)
/PHP-5.5/Zend/
H A Dzend_extensions.c27 int zend_load_extension(const char *path) in zend_load_extension() argument
34 handle = DL_LOAD(path); in zend_load_extension()
37 fprintf(stderr, "Failed loading %s: %s\n", path, DL_ERROR()); in zend_load_extension()
43 fprintf(stderr, "Failed loading %s\n", path); in zend_load_extension()
57 fprintf(stderr, "%s doesn't appear to be a valid Zend extension\n", path); in zend_load_extension()
/PHP-5.5/main/streams/
H A Dstreams.c175 char *tmp = estrdup(path); in php_stream_display_wrapper_errors()
1777 protocol = path;
1818 if (localhost == 0 && path[n+3] != '\0' && path[n+3] != '/' && path[n+4] != ':') {
1820 if (localhost == 0 && path[n+3] != '\0' && path[n+3] != '/') {
1924 char *path_to_open = path;
1977 if (!path || !*path) {
1981 path_to_open = path;
2033 if (!path || !*path) {
2039 resolved_path = zend_resolve_path(path, strlen(path) TSRMLS_CC);
2041 path = resolved_path;
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Duserstreams_007.phpt6 function stream_open($path, $mode, $openedpath) {
9 public function stream_metadata($path, $option, $var) {
10 echo "metadata: $path, $option\n";
H A Ddirname_basic.phpt12 /* Prototype : string dirname(string path)
13 * Description: Returns the directory name component of the path
55 foreach ($paths as $path) {
56 var_dump( dirname($path) );
H A Dbasename-win32.phpt14 * proto string basename(string path [, string suffix])
90 /* path with spaces */
102 foreach ($path_arrays as $path) {
104 if( 1 == count($path) ) { // no suffix provided
105 var_dump( basename($path[0]) );
106 } else { // path as well as suffix provided,
107 var_dump( basename($path[0], $path[1]) );
115 echo "\n*** Testing possible variations in path and suffix ***\n";
215 *** Testing possible variations in path and suffix ***
H A Dreadfile_variation6.phpt2 Test readfile() function : variation - test include path
38 fwrite($h, "File in include path");
49 File in include path
H A Dfile_get_contents_variation1.phpt2 Test file_get_contents() function : variation - include path testing
39 fwrite($h, "File in include path");
50 File in include path
H A Ddirname_basic-win32.phpt12 /* Prototype : string dirname(string path)
13 * Description: Returns the directory name component of the path
55 foreach ($paths as $path) {
56 var_dump( dirname($path) );
/PHP-5.5/ext/standard/tests/streams/
H A Dbug60455_03.phpt9 function stream_open($path, $mode, $options, &$opened_path) {
11 $this->lines[] = ($path == "test://nonempty2nd" ? "b\n" : "\n");
12 if ($path == "test://eofafter2nd")
H A Dstream_get_meta_data_file_variation4.phpt2 stream_get_meta_data() with a relative file path
14 echo "\nChange to file's directory and open with a relative path:\n";
51 Change to file's directory and open with a relative path:
/PHP-5.5/sapi/nsapi/
H A Dnsapi-readme.txt13 <path-to-netscape-server>/https-servername/start
18 <path-to-server>/https-servername/config
27 <path-to-server>/https-servername/config/obj.conf (for servers < 6) or
29 <path-to-server>/https-servername/config/magnus.conf file:
31 … Init fn="load-modules" funcs="php5_init,php5_execute,php5_auth_trans" shlib="/path/to/phplibrary"
32 Init fn=php5_init errorString="Failed to initialize PHP!" [php_ini="/path/to/php.ini"]
36 Unix: "<path-to-server>/bin/libphp5.so".
37 Windows: "c:/path/to/php5/php5nsapi.dll"
49 # directive, e.g. doc_root="/path"
94 <Object ppath="d:\path\to\authenticated\dir\*">
[all …]
/PHP-5.5/ext/phar/
H A Dstream.c89 resource->path = entry; in phar_parse_url()
98 fprintf(stderr, "Path: %s\n", resource->path); in phar_parse_url()
191 internal_file = estrdup(resource->path + 1); in phar_wrapper_open_url()
729 internal_file = estrdup(resource->path + 1); in phar_wrapper_unlink()
863 …if (SUCCESS == zend_hash_find(&(phar->manifest), resource_from->path+1, strlen(resource_from->path in phar_wrapper_rename()
885 entry->filename = estrdup(resource_to->path+1); in phar_wrapper_rename()
899 …ir = zend_hash_exists(&(phar->virtual_dirs), resource_from->path+1, strlen(resource_from->path)-1); in phar_wrapper_rename()
917 uint from_len = strlen(resource_from->path+1); in phar_wrapper_rename()
918 uint to_len = strlen(resource_to->path+1); in phar_wrapper_rename()
934 memcpy(new_str_key, resource_to->path + 1, to_len); in phar_wrapper_rename()
[all …]
/PHP-5.5/tests/security/
H A Dopen_basedir_file_put_contents.phpt32 …dir restriction in effect. File(../bad/bad.txt) is not within the allowed path(s): (.) in %s on li…
37 …r restriction in effect. File(.././bad/bad.txt) is not within the allowed path(s): (.) in %s on li…
42 …triction in effect. File(../bad/../bad/bad.txt) is not within the allowed path(s): (.) in %s on li…
47 …restriction in effect. File(./.././bad/bad.txt) is not within the allowed path(s): (.) in %s on li…
52 …restriction in effect. File%s/test/bad/bad.txt) is not within the allowed path(s): (.) in %s on li…
/PHP-5.5/tests/run-test/
H A Dtest007.phpt10 function check_dirname($path) {
12 $path1 = str_replace("%",$s,$path);
15 print "dirname($path) == $path3\n";
/PHP-5.5/ext/phar/phar/
H A Ddirectorygraphiterator.inc19 function __construct($path)
24 new RecursiveDirectoryIterator($path, RecursiveDirectoryIterator::KEY_AS_FILENAME
/PHP-5.5/ext/standard/tests/url/
H A Dbug68917.phpt13 [path] => /hi
20 [path] => /hi
/PHP-5.5/ext/spl/examples/
H A Ddirectorygraphiterator.inc19 function __construct($path)
24 new RecursiveDirectoryIterator($path, RecursiveDirectoryIterator::KEY_AS_FILENAME
/PHP-5.5/ext/standard/
H A Dhttp_fopen_wrapper.c149 resource = php_url_parse(path); in php_stream_url_wrap_http_ex()
370 scratch_len = strlen(path) + 29 + protocol_version_len; in php_stream_url_wrap_http_ex()
389 strcat(scratch, path); in php_stream_url_wrap_http_ex()
394 if (resource->path && *resource->path) { in php_stream_url_wrap_http_ex()
395 strlcat(scratch, resource->path, scratch_len); in php_stream_url_wrap_http_ex()
816 if (*(location+1) != '\0' && resource->path) { in php_stream_url_wrap_http_ex()
817 char *s = strrchr(resource->path, '/'); in php_stream_url_wrap_http_ex()
819 s = resource->path; in php_stream_url_wrap_http_ex()
822 s = resource->path = estrdup("/"); in php_stream_url_wrap_http_ex()
828 if (resource->path && *(resource->path) == '/' && *(resource->path + 1) == '\0') { in php_stream_url_wrap_http_ex()
[all …]
/PHP-5.5/ext/phar/tests/
H A Dbug46178.phpt13 $phar['long/path/name.txt'] = 'hi';
14 $phar->addEmptyDir('long/path');
/PHP-5.5/ext/zlib/tests/
H A Dcompress_zlib_wrapper.phpt11 // Relative path
15 // Absolute path
/PHP-5.5/ext/standard/tests/general_functions/
H A Dinclude_path.phpt23 var_dump(set_include_path(".:/path/to/dir"));
62 string(14) ".:/path/to/dir"
70 Warning: set_include_path() expects parameter 1 to be a valid path, array given in %s on line %d
/PHP-5.5/ext/session/tests/
H A Dsession_save_path_variation5.phpt17 * Prototype : string session_save_path([string $path])
18 * Description : Get and/or set the current session save path
51 Warning: ini_set(): open_basedir restriction in effect. File(%s) is not within the allowed path(s):…
/PHP-5.5/ext/dba/
H A Ddba_qdbm.c46 dbf = dpopen(info->path, DP_OREADER, 0); in DBA_OPEN_FUNC()
49 dbf = dpopen(info->path, DP_OWRITER, 0); in DBA_OPEN_FUNC()
52 dbf = dpopen(info->path, DP_OWRITER | DP_OCREAT, 0); in DBA_OPEN_FUNC()
55 dbf = dpopen(info->path, DP_OWRITER | DP_OCREAT | DP_OTRUNC, 0); in DBA_OPEN_FUNC()
/PHP-5.5/ext/standard/tests/strings/
H A Ddirname_basic.phpt5 /* Prototype: string dirname ( string $path );
6 Description: Returns directory name component of path.
20 /* path with only files and trailing slashes*/
31 /* path with file extension and trailing slashes */

Completed in 76 milliseconds

12345678910>>...28