Home
last modified time | relevance | path

Searched refs:realpath (Results 51 – 75 of 76) sorted by relevance

1234

/PHP-5.3/scripts/dev/
H A Dcheck_parameters.php25 define('PHPDIR', realpath(dirname(__FILE__) . '/../..'));
372 recurse(realpath($dir));
/PHP-5.3/
H A Dserver-tests.php87 INI=" . realpath(get_cfg_var("cfg_file_path")) . "
724 $this->test_dirs[] = realpath($path);
861 $testfile = realpath("$dir/$name");
986 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['output']));
987 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['diff']));
1145 '_DIR' => realpath(dirname($file)),
1210 …$output = trim($this->runscript($section_text['SKIPIF'],$this->test_executable_iscgi,realpath(dirn…
1537 $testname = realpath($testname);
1538 $logname = realpath($logname);
H A Drun-tests.php76 define('__DIR__', realpath(dirname(__FILE__)));
732 $testfile = realpath($argv[$i]);
882 $testfile = realpath("{$dir}/{$name}");
1035 $testname = realpath($testname);
1036 $logname = realpath($logname);
1321 $php = realpath(dirname($php) . "/php-cgi.exe") . ' -C ';
1325 $php = realpath(dirname($php) . "/../../sapi/cgi/php-cgi") . ' -C ';
1328 $php = realpath("./sapi/cgi/php-cgi") . ' -C ';
1331 $php = realpath(dirname($php) . "/php-cgi") . ' -C ';
1346 $temp_dir = $test_dir = realpath(dirname($file));
[all …]
H A DUPGRADING63 - clearstatcache() no longer clears the realpath cache by default.
65 - realpath() is no longer system-dependent and works identically on all
H A Dphp.ini-development410 ; Determines the size of the realpath cache to be used by PHP. This value should
413 ; http://php.net/realpath-cache-size
416 ; Duration of time, in seconds for which to cache realpath information for a given
419 ; http://php.net/realpath-cache-ttl
H A Dphp.ini-production410 ; Determines the size of the realpath cache to be used by PHP. This value should
413 ; http://php.net/realpath-cache-size
416 ; Duration of time, in seconds for which to cache realpath information for a given
419 ; http://php.net/realpath-cache-ttl
H A DNEWS2202 - Fixed memory leak in the realpath cache on Windows. (Pierre)
2394 - Improved symbolic, mounted volume and junctions support for realpath on
2421 - Fixed possible bad caching of symlinked directories in the realpath cache
3003 directories in realpath-cache. (Dmitry)
3960 - Fixed bug #43248 (backward compatibility break in realpath()). (Dmitry)
4730 - VCWD_REALPATH() is improved to use realpath cache without VIRTUAL_DIR.
4811 - Fixed bug #40092 (chroot() doesn't clear realpath cache). (Dmitry)
4958 - Fixed bug #39367 (clearstatcache() doesn't clear realpath cache).
5742 - Fixed bug #36334 (Added missing documentation about realpath cache INI
5788 - Fixed bug #36016 (realpath cache memleaks). (Dmitry, Nuno)
[all …]
H A Dconfigure.in573 realpath \
H A Dacinclude.m41676 dnl Some systems, notably Solaris, cause getcwd() or realpath to fail if a
/PHP-5.3/ext/phar/
H A Dphar.c1748 phar_unixify_path_separators(realpath, strlen(realpath));
1750 if (zend_hash_exists(&(PHAR_GLOBALS->phar_fname_map), realpath, strlen(realpath))) {
1752 efree(realpath);
1756 if (PHAR_G(manifest_cached) && zend_hash_exists(&cached_phars, realpath, strlen(realpath))) {
1758 efree(realpath);
1761 efree(realpath);
1800 phar_unixify_path_separators(realpath, strlen(realpath));
1808 slash = strrchr(realpath, '/');
1813 efree(realpath);
1818 efree(realpath);
[all …]
/PHP-5.3/TSRM/
H A Dtsrm_virtual_cwd.c65 #define realpath(x,y) strcpy(y,x) macro
638 if(r->path == r->realpath) { in realpath_cache_del()
653 static inline void realpath_cache_add(const char *path, int path_len, const char *realpath, int rea… in realpath_cache_add() argument
659 memcmp(path, realpath, path_len) != 0) { in realpath_cache_add()
681 bucket->realpath = bucket->path; in realpath_cache_add()
683 bucket->realpath = bucket->path + (path_len + 1); in realpath_cache_add()
684 memcpy(bucket->realpath, realpath, realpath_len+1); in realpath_cache_add()
720 if(r->path == r->realpath) { in realpath_cache_find()
856 memcpy(path, bucket->realpath, bucket->realpath_len + 1); in tsrm_realpath_r()
H A Dtsrm_virtual_cwd.h215 char *realpath; member
H A Dtsrm_win32.c716 TSRM_API char *realpath(char *orig_path, char *buffer) in realpath() function
/PHP-5.3/ext/standard/
H A Dfile.h64 PHP_FUNCTION(realpath);
H A Dfilestat.c1170 add_assoc_stringl(entry, "realpath", bucket->realpath, bucket->realpath_len, 1); in PHP_FUNCTION()
H A Dfile.c2427 PHP_FUNCTION(realpath) in PHP_FUNCTION() argument
/PHP-5.3/win32/build/
H A Dmkdist.php71 $bd = strtolower(realpath($build_dir));
425 $path_to_phar = realpath(__DIR__ . '/../../ext/phar');
/PHP-5.3/ext/pdo_odbc/tests/
H A Dcommon.phpt49 $path = realpath(dirname(__FILE__)) . '\pdo_odbc.mdb';
/PHP-5.3/ext/mysql/tests/
H A Dmysql_query_load_data_openbasedir.phpt90 mysql_real_escape_string(realpath('./simple.csv'), $link));
/PHP-5.3/Zend/
H A Dzend_vm_gen.php979 $definition_file = realpath($def);
987 $skeleton_file = realpath($skel);
1130 $executor_file = realpath("zend_vm_execute.h");
/PHP-5.3/ext/phar/phar/
H A Dclicommand.inc183 $f = realpath($arg);
205 $f = realpath($d);
/PHP-5.3/ext/standard/tests/file/windows_acls/
H A Dcommon.inc138 $dst = realpath($name);
/PHP-5.3/ext/phar/tests/files/
H A Dpear2coverage.phar.php494 $newcodepath = realpath($codepath);
562 $testpath = realpath($testpath);
753 $newcodepath = realpath($codepath);
844 $testpath = realpath($testpath);
/PHP-5.3/ext/ftp/tests/
H A Dserver.inc74 /* quick&dirty realpath() like function */
/PHP-5.3/ext/standard/tests/file/
H A Dtempnam_variation4.phpt44 if (realpath(dirname($file_name)) == realpath(sys_get_temp_dir())) {

Completed in 131 milliseconds

1234