Home
last modified time | relevance | path

Searched refs:path (Results 1 – 25 of 678) sorted by path

12345678910>>...28

/PHP-5.5/
H A DINSTALL215 php.ini in another location, use --with-config-file-path=/some/path in
285 installations. You should replace /path/to/ with the path to these
293 /path/to/apachectl stop
294 /path/to/apachectl start
297 /path/to/httpsdctl stop
298 /path/to/httpsdctl start
302 /path/to/apachectl stop
303 /path/to/apachectl startssl
446 --with-config-file-path=/some/path in step 5.
661 path and run:
[all …]
H A DMakefile.global52 i=`$(top_srcdir)/build/shtool path -d $$i`; \
98 INI_SCANNED_PATH=`$(top_srcdir)/build/shtool path -d $$INI_SCANNED_PATH`; \
H A DNEWS692 . Fixed bug #60704 (unlink() bug with some files path).
947 . Made fontFetch's path parser thread-safe. (Sara).
1488 . Fixed issue #115 (path issue when using phar). (Dmitry)
5062 - Fixed bug #51627 (script path not correctly evaluated).
6386 path) (Pierre)
6503 a relative path. (Pierre)
6639 relative path. (Pierre)
7116 - Fixed bug #42699 (PHP_SELF duplicates path). (Dmitry)
7131 - Fixed bug #42523 (PHP_SELF duplicates path). (Dmitry)
7899 install path). (Tony)
[all …]
H A DREADME.PARAMETER_PARSING_API65 p - valid path (string without null bytes in the middle) and its length (char*, int)
110 # php ./scripts/dev/check_parameters.php /path/to/your/sources/
H A DREADME.SELF-CONTAINED-EXTENSIONS55 [--with-php-config=/path/to/php-config] \
135 [--with-php-config=/path/to/php-config]
H A DREADME.STREAMS49 PHPAPI php_stream *php_stream_open_wrapper(char *path, char *mode,
53 path is the file or resource to open.
56 IGNORE_PATH (default) - don't use include path to search for the file
57 USE_PATH - use include path to search for the file
67 opened_path is used to return the path of the actual file opened,
95 PHPAPI php_stream *php_stream_sock_open_unix(const char *path, int persistent,
H A DREADME.TESTING30 sapi/cli/php [-c /path/to/php.ini] run-tests.php [ext/foo/tests/GLOB]
H A DREADME.TESTING242 php server-tests.php -p /path/to/php-cli
45 php server-tests.php -p /path/to/php-cgi
48 php server-tests.php -w -u http://localhost/test -m /path/to/htdocs/test
54 php server-tests.php -c /path/to/server-tests-config.php
58 php server-tests.php -c /path/to/server-tests-config.php -w -t 3 -d /path/to/testdir
95 $filename full native path to file, will become PATH_TRANSLATED
115 PATH_INFO=/path/info
H A Dacinclude.m460 dnl PHP_EXPAND_PATH(path, variable)
62 dnl expands path to an absolute path and assigns it to variable
442 dnl PHP_ADD_LIBPATH(path [, SHARED-LIBADD])
444 dnl Adds a path to linkpath/runpath (LDFLAGS)
487 dnl PHP_ADD_INCLUDE(path [,before])
489 dnl add an include path.
573 dnl and path to linkpath/runpath (not deferred)
613 dnl PHP_ADD_FRAMEWORKPATH(path [,before])
635 dnl PHP_ADD_FRAMEWORK_WITH_PATH(framework, path)
2585 dnl PHP_INSTALL_HEADERS(path [, file ...])
[all …]
H A Dconfigure.in778 case `$php_shtool path $CC` in
891 PHP_ARG_WITH(config-file-path, path to configuration file,
892 [ --with-config-file-path=PATH
893 … Set the path in which to look for php.ini @<:@PREFIX/lib@:>@], DEFAULT, no)
909 Set the path where to scan for configuration files], DEFAULT, no)
932 AC_MSG_ERROR([Cannot locate libgcc. Make sure that gcc is in your path])
1190 dnl Build extension directory path
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.c295 if (path[0] >= 'A' && path[0] <= 'Z') { in php_sys_stat_ex()
311 if (path[0] >= 'A' && path[0] <= 'Z') { in php_sys_stat_ex()
621 memcmp(path, (*bucket)->path, path_len) == 0) { in realpath_cache_del()
666 memcpy(bucket->path, path, path_len+1); in realpath_cache_add()
715 memcmp(path, (*bucket)->path, path_len) == 0) { in realpath_cache_find()
801 if (j == 0 && path[0] == '.' && path[1] == '.' && in tsrm_realpath_r()
808 path[j+1] == '.' && path[j+2] == '.' && in tsrm_realpath_r()
1020 memmove(path+i, path, j+1); in tsrm_realpath_r()
1079 memmove(path+i, path, j+1); in tsrm_realpath_r()
1417 } else if (!IS_ABSOLUTE_PATH(path, strlen(path))) { in virtual_realpath()
[all …]
H A Dtsrm_virtual_cwd.h71 (len >= 2 && IS_SLASH(path[0]) && IS_SLASH(path[1]))
73 (len >= 2 && ((isalpha(path[0]) && path[1] == ':') || IS_UNC_PATH(path, len)))
86 ((strchr(path, ':') != NULL) || ((len >= 1) && ((path[0] == '/') || (path[0] == '\\'))))
291 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument
292 #define VCWD_OPEN(path, flags) open(path, flags) argument
294 #define VCWD_CREAT(path, mode) creat(path, mode) argument
302 #define VCWD_CHDIR(path) chdir(path) argument
306 #define VCWD_LSTAT(path, buff) lstat(path, buff) argument
307 #define VCWD_UNLINK(path) unlink(path) argument
324 # define VCWD_UTIME(path, time) utime(path, time) argument
[all …]
/PHP-5.5/Zend/tests/
H A Dbug38779.phpt9 public function stream_open($path, $mode, $options, &$opened_path) {
H A Dbug38779_1.phpt9 public function stream_open($path, $mode, $options, &$opened_path) {
H A Dbug47593.phpt2 Bug #47593 (interface_exists() returns false when using absolute namespace path)
/PHP-5.5/Zend/
H A Dzend_compile.c7178 path += 2; in zend_dirname()
7215 if (end < path) { in zend_dirname()
7218 path[1] = '\0'; in zend_dirname()
7226 if (end < path) { in zend_dirname()
7230 path[0] = '.'; in zend_dirname()
7231 path[1] = '\0'; in zend_dirname()
7234 path[0] = '\0'; in zend_dirname()
7238 path[0] = '.'; in zend_dirname()
7239 path[1] = '\0'; in zend_dirname()
7248 if (end < path) { in zend_dirname()
[all …]
H A Dzend_compile.h713 ZEND_API size_t zend_dirname(char *path, size_t len);
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()
H A Dzend_extensions.h120 ZEND_API int zend_load_extension(const char *path);
/PHP-5.5/build/
H A Dbuild.mk70 @for i in `find . -type d ! -path '*/.svn/*' | grep -v '.svn'`; do \
H A Dlibtool.m41495 # which wouldn't understand a cygwinified path. Ahh.
1710 # Append ld.so.conf contents to the search path
2256 # Check if gcc -print-prog-name=ld gives a path.
3092 # as there is no search path for DLLs.
4395 # This is the shared library runtime path variable.
4398 # This is the shared library path variable.
4445 # Compile-time system search path for libraries
4448 # Run-time system search path for libraries
5465 # as there is no search path for DLLs.
5776 # no search path for DLLs.
[all …]
H A Dshtool168 shtoolize -obuild/shtool echo install mkdir platform path
177 echo|install|mkdir|platform|path )
253 path )
1670 path )
1768 path=`echo $path | sed -e 's;/*$;;'`
1769 if [ $minusx "$path/cpp" ] && [ ! -d "$path/cpp" ]; then
1770 cpp="$path/cpp"
1797 for path in $paths; do
1798 path=`echo $path | sed -e 's;/*$;;'`
1799 if [ $minusx "$path/$name" ] && [ ! -d "$path/$name" ]; then
[all …]
/PHP-5.5/ext/bz2/
H A Dbz2.c212 char *path, in _php_stream_bz2open() argument
222 if (strncasecmp("compress.bzip2://", path, 17) == 0) { in _php_stream_bz2open()
223 path += 17; in _php_stream_bz2open()
230 virtual_filepath_ex(path, &path_copy, NULL TSRMLS_CC); in _php_stream_bz2open()
232 path_copy = path; in _php_stream_bz2open()
255 stream = php_stream_open_wrapper(path, mode, options | STREAM_WILL_CAST, opened_path); in _php_stream_bz2open()
H A Dconfig.m412 AC_MSG_CHECKING(for BZip2 in default path)
H A Dphp_bz2.h50 PHP_BZ2_API php_stream *_php_stream_bz2open(php_stream_wrapper *wrapper, char *path, char *mode, in…
54 #define php_stream_bz2open(wrapper, path, mode, options, opened_path) _php_stream_bz2open((wrapper)… argument

Completed in 133 milliseconds

12345678910>>...28