Searched defs:filepath (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_3/ |
| H A D | server-tests.php | 1101 $filepath = dirname($filename); variable
|
| /PHP_5_3/TSRM/ |
| H A D | tsrm_virtual_cwd.c | 1459 CWD_API int virtual_filepath_ex(const char *path, char **filepath, verify_path_func verify_path TSRMLS_DC) /* {{{ */ argument 1467 *filepath = new_state.cwd; 1474 CWD_API int virtual_filepath(const char *path, char **filepath TSRMLS_DC) /* {{{ */ 1476 return virtual_filepath_ex(path, filepath, php_is_file_ok TSRMLS_CC);
|
| /PHP_5_3/main/ |
| H A D | fopen_wrappers.c | 837 PHPAPI char *expand_filepath(const char *filepath, char *real_path TSRMLS_DC) argument 839 return expand_filepath_ex(filepath, real_path, NULL, 0 TSRMLS_CC); 845 PHPAPI char *expand_filepath_ex(const char *filepath, char *real_path, const char *relative_to, size_t relative_to_len TSRMLS_DC) argument 851 if (!filepath[0]) { 853 } else if (IS_ABSOLUTE_PATH(filepath, strlen(filepath))) { 868 if (!result && (iam != filepath)) { 871 fdtest = VCWD_OPEN(filepath, O_RDONLY); 876 copy_len = strlen(filepath) > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : strlen(filepath); [all...] |
Completed in 15 milliseconds