Home
last modified time | relevance | path

Searched refs:path (Results 776 – 800 of 853) sorted by relevance

1...<<3132333435

/php-src/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_basic1.phpt34 // filename stored in array with single and double slash notation in its path
H A Duserstreams_002.phpt8 function stream_open($path, $mode, $openedpath) {
H A Duserstreams_003.phpt10 function stream_open($path, $mode, $openedpath) {
H A Dunlink_variation8.phpt29 // relative bad path
38 //absolute bad path
/php-src/ext/standard/tests/streams/
H A Dstream_set_chunk_size.phpt7 function stream_open($path, $mode, $openedpath) {
/php-src/ext/dba/
H A Ddba_gdbm.c49 dbf = gdbm_open(ZSTR_VAL(info->path), /* int block_size */ 0, gmode, filemode, NULL); in DBA_OPEN_FUNC()
H A Ddba_cdb.c76 file = VCWD_OPEN(ZSTR_VAL(info->path), O_RDONLY); in DBA_OPEN_FUNC()
/php-src/ext/session/
H A Dmod_mm.c223 static zend_result ps_mm_initialize(ps_mm *data, const char *path) in ps_mm_initialize() argument
226 data->mm = mm_create(0, path); in ps_mm_initialize()
/php-src/ext/phar/tests/
H A Dfopen_edgecases.phpt81 …phar://", must have at least phar:/// for root directory (always use full path to a new phar) in %…
101 …phar://", must have at least phar:/// for root directory (always use full path to a new phar) in %…
H A D027.phpt86 …y in "phar://", must have at least phar:/// for root directory (always use full path to a new phar)
H A Dfgc_edgecases.phpt93 …phar://%sfgc_edgecases.phar.php/oops): Failed to open stream: phar error: path "oops" is a directo…
H A Dmounteddir.phpt98 …pmanifest1.phar.php/testit/directory): Failed to open stream: phar error: path "testit/directory" …
/php-src/ext/mbstring/tests/
H A Dutf8_mobile_encodings.phpt73 function readUTF8ConversionTable($path, &$from, &$to, &$invalid) {
78 $fp = fopen($path, 'r+');
/php-src/docs-old/
H A Dself-contained-extensions.md54 [--with-php-config=/path/to/php-config] \
134 [--with-php-config=/path/to/php-config]
/php-src/ext/curl/tests/
H A Dcurl_setopt_CURLOPT_DEBUGFUNCTION.phpt47 echo "\n===Testing with CURLOPT_DEBUGFUNCTION happy path===\n";
174 ===Testing with CURLOPT_DEBUGFUNCTION happy path===
/php-src/ext/opcache/
H A DZendAccelerator.h325 zend_string *accel_make_persistent_key(zend_string *path);
/php-src/sapi/fpm/
H A Dwww.conf.in18 ;prefix = /path/to/pools/$pool
39 ; '/path/to/unix/socket' - to listen on a unix socket.
272 ; '/path/to/unix/socket' - to listen on a unix socket.
286 ;ping.path = /ping
412 ; absolute path. When this value is not set, chroot is not used.
423 ; Note: relative path can be used.
481 ; Note: path INI options can be relative and will be expanded with the prefix
/php-src/ext/standard/
H A Dbasic_functions.stub.php2242 …ing $name, string $value = "", array|int $expires_or_options = 0, string $path = "", string $domai…
2244 …ing $name, string $value = "", array|int $expires_or_options = 0, string $path = "", string $domai…
2373 function basename(string $path, string $suffix = ""): string {}
2380 function dirname(string $path, int $levels = 1): string {}
2386 function pathinfo(string $path, int $flags = PATHINFO_ALL): array|string {}
2884 function realpath(string $path): string|false {}
3104 function readlink(string $path): string|false {}
3106 function linkinfo(string $path): int|false {}
/php-src/sapi/fpm/fpm/
H A Dfpm_sockets.c242 char *path = ((struct sockaddr_un *) sa)->sun_path; in fpm_sockets_new_listening_socket() local
246 if (0 > fpm_unix_set_socket_permissions(wp, path)) { in fpm_sockets_new_listening_socket()
/php-src/main/
H A Drfc1867.c531 static char *php_ap_basename(const zend_encoding *encoding, char *path) in php_ap_basename() argument
533 char *s = strrchr(path, '\\'); in php_ap_basename()
534 char *s2 = strrchr(path, '/'); in php_ap_basename()
548 return path; in php_ap_basename()
/php-src/.circleci/
H A Dconfig.yml148 --with-config-file-path=/etc \
/php-src/ext/dom/
H A Dphp_dom.c2729 xmlChar *php_dom_libxml_fix_file_path(xmlChar *path) in php_dom_libxml_fix_file_path() argument
2731 if (strncmp((char *) path, "file:/", sizeof("file:/") - 1) == 0) { in php_dom_libxml_fix_file_path()
2732 if (path[6] != '/' && path[6] != '\0' && path[7] != '/' && path[7] != '\0') { in php_dom_libxml_fix_file_path()
2736 return path; in php_dom_libxml_fix_file_path()
2738 new_path = xmlStrcat(new_path, path + 6); in php_dom_libxml_fix_file_path()
2739 xmlFree(path); in php_dom_libxml_fix_file_path()
2743 return path; in php_dom_libxml_fix_file_path()
/php-src/ext/standard/tests/strings/
H A Dget_html_translation_table_basic7.phpt9 /* uses &#039; to share the code path with HTML 4.01 */
/php-src/sapi/phpdbg/
H A Dphpdbg.c1099 php_stream *phpdbg_stream_url_wrap_php(php_stream_wrapper *wrapper, const char *path, const char *m… in phpdbg_stream_url_wrap_php() argument
1101 if (!strncasecmp(path, "php://", 6)) { in phpdbg_stream_url_wrap_php()
1102 path += 6; in phpdbg_stream_url_wrap_php()
1105 if (!strncasecmp(path, "stdin", 6) && PHPDBG_G(stdin_file)) { in phpdbg_stream_url_wrap_php()
1119 …return PHPDBG_G(orig_url_wrap_php)->wops->stream_opener(wrapper, path, mode, options, opened_path,… in phpdbg_stream_url_wrap_php()
/php-src/ext/tidy/
H A Dtidy.c203 static void php_tidy_load_config(TidyDoc doc, const char *path) in php_tidy_load_config() argument
205 int ret = tidyLoadConfig(doc, path); in php_tidy_load_config()
207 php_error_docref(NULL, E_WARNING, "Could not load the Tidy configuration file \"%s\"", path); in php_tidy_load_config()
209 …docref(NULL, E_NOTICE, "There were errors while parsing the Tidy configuration file \"%s\"", path); in php_tidy_load_config()

Completed in 80 milliseconds

1...<<3132333435