Home
last modified time | relevance | path

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

12345678910>>...24

/PHP-5.3/
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.global48 i=`$(top_srcdir)/build/shtool path -d $$i`; \
94 INI_SCANNED_PATH=`$(top_srcdir)/build/shtool path -d $$INI_SCANNED_PATH`; \
H A DNEWS471 . Fixed bug #62227 (Invalid phar stream path causes crash). (Felipe)
2012 - Fixed bug #51627 (script path not correctly evaluated).
3336 path) (Pierre)
3453 a relative path. (Pierre)
3589 relative path. (Pierre)
4066 - Fixed bug #42699 (PHP_SELF duplicates path). (Dmitry)
4081 - Fixed bug #42523 (PHP_SELF duplicates path). (Dmitry)
4849 install path). (Tony)
4980 - Fixed bug #39265 (Fixed path handling inside mod_files.sh).
6089 . virtual path handling by adding a realpath() cache. (Andi)
[all …]
H A DREADME.PARAMETER_PARSING_API94 # 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 DTODO48 stream/path.
H A DUPGRADING43 - Paths containing NULL (like /some/path\0foo.txt) are now considered invalid.
145 - SplFileInfo::getpathinfo() now returns information about the path name.
333 - It is now possible to use the full path to load modules using the "extension"
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)
2572 dnl PHP_INSTALL_HEADERS(path [, file ...])
[all …]
H A Dconfigure.in706 case `$php_shtool path $CC` in
805 PHP_ARG_WITH(config-file-path, path to configuration file,
806 [ --with-config-file-path=PATH
807 Set the path in which to look for php.ini [PREFIX/lib]], DEFAULT, no)
823 Set the path where to scan for configuration files], DEFAULT, no)
877 AC_MSG_ERROR([Cannot locate libgcc. Make sure that gcc is in your path])
1121 dnl Build extension directory path
/PHP-5.3/TSRM/
H A Dtsrm_virtual_cwd.c307 if (path[0] >= 'A' && path[0] <= 'Z') { in php_sys_stat_ex()
323 if (path[0] >= 'A' && path[0] <= 'Z') { in php_sys_stat_ex()
633 memcmp(path, (*bucket)->path, path_len) == 0) { in realpath_cache_del()
678 memcpy(bucket->path, path, path_len+1); in realpath_cache_add()
728 memcmp(path, (*bucket)->path, path_len) == 0) { in realpath_cache_find()
814 if (j == 0 && path[0] == '.' && path[1] == '.' && in tsrm_realpath_r()
821 path[j+1] == '.' && path[j+2] == '.' && in tsrm_realpath_r()
1033 memmove(path+i, path, j+1); in tsrm_realpath_r()
1092 memmove(path+i, path, j+1); in tsrm_realpath_r()
1431 } 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.3/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.3/Zend/
H A Dzend_compile.c5365 path += 2; in zend_dirname()
5402 if (end < path) { in zend_dirname()
5405 path[1] = '\0'; in zend_dirname()
5413 if (end < path) { in zend_dirname()
5417 path[0] = '.'; in zend_dirname()
5418 path[1] = '\0'; in zend_dirname()
5421 path[0] = '\0'; in zend_dirname()
5425 path[0] = '.'; in zend_dirname()
5426 path[1] = '\0'; in zend_dirname()
5435 if (end < path) { in zend_dirname()
[all …]
H A Dzend_compile.h608 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.3/build/
H A Dbuild.mk71 @for i in `find . -type d ! -path '*/.svn/*' | grep -v '.svn'`; do \
H A Dlibtool.m41489 # which wouldn't understand a cygwinified path. Ahh.
1708 # Append ld.so.conf contents to the search path
2253 # Check if gcc -print-prog-name=ld gives a path.
3089 # as there is no search path for DLLs.
4392 # This is the shared library runtime path variable.
4395 # This is the shared library path variable.
4442 # Compile-time system search path for libraries
4445 # Run-time system search path for libraries
5462 # as there is no search path for DLLs.
5773 # 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 )
1663 path )
1761 path=`echo $path | sed -e 's;/*$;;'`
1762 if [ $minusx "$path/cpp" ] && [ ! -d "$path/cpp" ]; then
1763 cpp="$path/cpp"
1790 for path in $paths; do
1791 path=`echo $path | sed -e 's;/*$;;'`
1792 if [ $minusx "$path/$name" ] && [ ! -d "$path/$name" ]; then
[all …]
/PHP-5.3/ext/bz2/
H A Dbz2.c208 char *path, in _php_stream_bz2open() argument
218 if (strncasecmp("compress.bzip2://", path, 17) == 0) { in _php_stream_bz2open()
219 path += 17; in _php_stream_bz2open()
226 virtual_filepath_ex(path, &path_copy, NULL TSRMLS_CC); in _php_stream_bz2open()
228 path_copy = path; in _php_stream_bz2open()
245 …stream = php_stream_open_wrapper(path, mode, options | STREAM_WILL_CAST | ENFORCE_SAFE_MODE, opene… in _php_stream_bz2open()

Completed in 132 milliseconds

12345678910>>...24