Home
last modified time | relevance | path

Searched refs:path (Results 1 – 25 of 853) sorted by last modified time

12345678910>>...35

/PHP-7.3/
H A DNEWS9 . Fixed bug #79971 (special character is breaking the path in xml function).
1181 . Fixed bug #51068 (DirectoryIterator glob:// don't support current path
1202 . Fixed bug #77317 (__DIR__, __FILE__, realpath() reveal physical path for
1549 . Fixed bug #49876 (Fix LDAP path lookup on 64-bit distros). (dzuelke)
1702 . Fixed bug #69948 (path/domain are not sanitized in setcookie). (cmb)
1887 . Fixed bug #76747 (Opcache treats path containing "test.pharma.tld" as a phar
2015 . Fixed bug #76333 (PHP built-in server does not find files if root path
2029 . Fixed bug #76335 ("link(): Bad file descriptor" with non-ASCII path).
2182 . Fixed bug #49876 (Fix LDAP path lookup on 64-bit distros). (dzuelke)
2562 . Added support for PCRE JIT fast path API. (dmitry)
H A Dconfigure.ac857 case `$php_shtool path $CC` in
970 PHP_ARG_WITH(config-file-path, path to configuration file,
971 [ --with-config-file-path=PATH
972 … Set the path in which to look for php.ini @<:@PREFIX/lib@:>@], DEFAULT, no)
988 Set the path where to scan for configuration files], DEFAULT, no)
1011 AC_MSG_ERROR([Cannot locate libgcc. Make sure that gcc is in your path])
1262 dnl Build extension directory path
H A Drun-tests.php1033 $path = $url_bits['host'].$url_bits['path'];
1040 $path = $url_bits['path'];
1057 fwrite($fs, "POST " . $path . "?status=$status&version=$php_version HTTP/1.1\r\n");
H A Dacinclude.m458 dnl PHP_EXPAND_PATH(path, variable)
60 dnl expands path to an absolute path and assigns it to variable
441 dnl PHP_ADD_LIBPATH(path [, SHARED-LIBADD])
443 dnl Adds a path to linkpath/runpath (LDFLAGS)
486 dnl PHP_ADD_INCLUDE(path [,before])
488 dnl add an include path.
572 dnl and path to linkpath/runpath (not deferred)
612 dnl PHP_ADD_FRAMEWORKPATH(path [,before])
634 dnl PHP_ADD_FRAMEWORK_WITH_PATH(framework, path)
2621 dnl PHP_INSTALL_HEADERS(path [, file ...])
[all …]
H A DUPGRADING374 "lifetime", "path", "domain", "secure", "httponly" and "samesite".
386 "expires", "path", "domain", "secure", "httponly" and "samesite".
/PHP-7.3/ext/dom/tests/
H A Dbug79971_2.phpt2 Bug #79971 (special character is breaking the path in xml function)
11 $path = '/' . str_replace('\\', '/', __DIR__);
13 $path = __DIR__;
15 $uri = "file://$path/bug79971_2.xml";
/PHP-7.3/ext/simplexml/tests/
H A Dbug79971_1.phpt2 Bug #79971 (special character is breaking the path in xml function)
10 $path = '/' . str_replace('\\', '/', __DIR__);
12 $path = __DIR__;
14 $uri = "file://$path/bug79971_1.xml";
/PHP-7.3/ext/zip/
H A Dphp_zip.c102 char *path_begin = path; in php_zip_make_relative_path()
105 if (path_len < 1 || path == NULL) { in php_zip_make_relative_path()
110 return path + COPY_WHEN_ABSOLUTE(path) + 1; in php_zip_make_relative_path()
116 while (i > 0 && !IS_SLASH(path[i])) { in php_zip_make_relative_path()
121 return path; in php_zip_make_relative_path()
124 if (i >= 2 && (path[i -1] == '.' || path[i -1] == ':')) { in php_zip_make_relative_path()
126 path_begin = path + i + 1; in php_zip_make_relative_path()
638 if (IS_SLASH(*path)) { in php_zip_pcre()
645 path = work_path; in php_zip_pcre()
1688 char *path = "."; in php_zip_add_from_pattern() local
[all …]
/PHP-7.3/ext/standard/tests/file/windows_links/
H A Dcommon.inc13 // install somewhere that is on %path% or added to %path%
/PHP-7.3/ext/phar/tests/
H A Dbug81211.phpt44 Iterator RecursiveIteratorIterator returned a path "%s%ebug81211%efoobar%efile" that is not in the …
45 Iterator RecursiveDirectoryIterator returned a path "%s%ebug81211%efoobar%efile" that is not in the…
/PHP-7.3/ext/phar/
H A Dphar_object.c437 char *fname, *arch = NULL, *entry = NULL, *path, *actual; in PHP_METHOD() local
442 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "pp", &path, &path_len, &actual, &actual_len) == FAILUR… in PHP_METHOD()
457 if (path_len > 7 && !memcmp(path, "phar://", 7)) { in PHP_METHOD()
458 …Can only mount internal paths within a phar archive, use a relative path instead of \"%s\"", path); in PHP_METHOD()
478 if (SUCCESS != phar_mount_entry(pphar, actual, actual_len, path, path_len)) { in PHP_METHOD()
479 …ion_ex(phar_ce_PharException, 0, "Mounting of %s to %s within phar %s failed", path, actual, arch); in PHP_METHOD()
480 if (path && path == entry) { in PHP_METHOD()
491 if (entry && path && path == entry) { in PHP_METHOD()
508 …} else if (SUCCESS == phar_split_fname(path, path_len, &arch, &arch_len, &entry, &entry_len, 2, 0)… in PHP_METHOD()
509 path = entry; in PHP_METHOD()
[all …]
/PHP-7.3/ext/filter/
H A Dlogical_filters.c605 …((flags & FILTER_FLAG_PATH_REQUIRED) && url->path == NULL) || ((flags & FILTER_FLAG_QUERY_REQUIRED… in php_filter_validate_url()
/PHP-7.3/ext/simplexml/
H A Dsimplexml.c2578 ZEND_ARG_INFO(0, path)
/PHP-7.3/ext/standard/
H A Durl.c51 if (theurl->path) in php_url_free()
52 zend_string_release_ex(theurl->path, 0); in php_url_free()
329 ret->path = zend_string_init(s, (e - s), 0); in php_url_parse_ex2()
330 php_replace_controlchars_ex(ZSTR_VAL(ret->path), ZSTR_LEN(ret->path)); in php_url_parse_ex2()
378 if (resource->path != NULL) RETVAL_STR_COPY(resource->path); in PHP_FUNCTION()
417 if (resource->path != NULL) { in PHP_FUNCTION()
418 ZVAL_STR_COPY(&tmp, resource->path); in PHP_FUNCTION()
H A Durl.h28 zend_string *path; member
H A Dconfig.m4426 … Include Argon2 support in password_*. DIR is the Argon2 shared library path])
/PHP-7.3/ext/standard/tests/strings/
H A Durl_t.phpt89 ["path"]=>
94 ["path"]=>
110 ["path"]=>
115 ["path"]=>
124 ["path"]=>
129 ["path"]=>
134 ["path"]=>
150 ["path"]=>
155 ["path"]=>
160 ["path"]=>
[all …]
/PHP-7.3/ext/standard/tests/url/
H A Dparse_url_basic_001.phpt25 ["path"]=>
41 ["path"]=>
46 ["path"]=>
55 ["path"]=>
60 ["path"]=>
65 ["path"]=>
81 ["path"]=>
86 ["path"]=>
91 ["path"]=>
107 ["path"]=>
[all …]
H A Dparse_url_basic_003.phpt77 --> zlib:/path/to/my/file/file.txt : NULL
84 --> file:///path/to/file : NULL
85 --> file://path/to/file : string(4) "path"
86 --> file:/path/to/file : NULL
92 --> http://user:@pass@host/path?argument?value#etc : string(4) "host"
H A Dparse_url_basic_005.phpt77 --> zlib:/path/to/my/file/file.txt : NULL
84 --> file:///path/to/file : NULL
85 --> file://path/to/file : NULL
86 --> file:/path/to/file : NULL
92 --> http://user:@pass@host/path?argument?value#etc : string(4) "user"
H A Dparse_url_unterminated.phpt27 ["path"]=>
43 ["path"]=>
48 ["path"]=>
57 ["path"]=>
62 ["path"]=>
67 ["path"]=>
83 ["path"]=>
88 ["path"]=>
93 ["path"]=>
109 ["path"]=>
[all …]
H A Dparse_url_basic_004.phpt77 --> zlib:/path/to/my/file/file.txt : NULL
84 --> file:///path/to/file : NULL
85 --> file://path/to/file : NULL
86 --> file:/path/to/file : NULL
92 --> http://user:@pass@host/path?argument?value#etc : NULL
/PHP-7.3/build/
H A Dlibtool.m41491 # which wouldn't understand a cygwinified path. Ahh.
1706 # Append ld.so.conf contents to the search path
2252 # Check if gcc -print-prog-name=ld gives a path.
3088 # as there is no search path for DLLs.
4391 # This is the shared library runtime path variable.
4394 # This is the shared library path variable.
4441 # Compile-time system search path for libraries
4444 # Run-time system search path for libraries
5461 # as there is no search path for DLLs.
5772 # no search path for DLLs.
[all …]
/PHP-7.3/Zend/
H A Dzend_virtual_cwd.c588 h ^= *path++; in realpath_cache_key()
621 memcmp(path, (*bucket)->path, path_len) == 0) { in realpath_cache_del()
662 memcpy(bucket->path, path, path_len+1); in realpath_cache_add()
706 memcmp(path, (*bucket)->path, path_len) == 0) { in realpath_cache_find()
800 if (j == 0 && path[0] == '.' && path[1] == '.' && in tsrm_realpath_r()
807 path[j+1] == '.' && path[j+2] == '.' && in tsrm_realpath_r()
1116 memmove(path+i, path, j+1); in tsrm_realpath_r()
1173 memmove(path+i, path, j+1); in tsrm_realpath_r()
1486 if (!*path) { in virtual_realpath()
1493 } else if (!IS_ABSOLUTE_PATH(path, strlen(path))) { in virtual_realpath()
[all …]
/PHP-7.3/main/streams/
H A Dplain_wrapper.c975 static php_stream *php_plain_files_dir_opener(php_stream_wrapper *wrapper, const char *path, const … in php_plain_files_dir_opener() argument
987 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path)) { in php_plain_files_dir_opener()
991 dir = VCWD_OPENDIR(path); in php_plain_files_dir_opener()
995 php_win32_docref2_from_error(GetLastError(), path, path); in php_plain_files_dir_opener()
1113 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path)) { in php_plain_files_stream_opener()
1117 return php_stream_fopen_rel(path, mode, opened_path, options); in php_plain_files_stream_opener()
1564 if (!path || !*path) { in _php_stream_fopen_with_path()
1580 pathbuf = estrdup(path); in _php_stream_fopen_with_path()
1582 size_t path_length = strlen(path); in _php_stream_fopen_with_path()
1585 memcpy(pathbuf, path, path_length); in _php_stream_fopen_with_path()
[all …]

Completed in 106 milliseconds

12345678910>>...35