Searched refs:slash (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/tests/security/ |
| H A D | open_basedir.inc | 21 // Remove any trailing slash first
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_constants.c | 502 char *slash = strrchr(c->name, '\\'); local 503 if(slash) { 505 zend_str_tolower(lowercase_name, slash-c->name);
|
| H A D | zend_execute_API.c | 508 char *save = actual, *slash; local 510 if ((Z_TYPE_P(p) & IS_CONSTANT_UNQUALIFIED) && (slash = (char *)zend_memrchr(actual, '\\', actual_len))) { 511 actual = slash + 1;
|
| /PHP_TRUNK/ext/phar/ |
| H A D | phar.c | 1776 char *slash; local 1783 slash = (char *) strrchr(filename, '/'); 1785 if (slash) { 1786 *slash = '\0'; 1790 if (!slash) { 1798 slash = strstr(realpath, filename) + ((ext - fname) + ext_len); 1799 *slash = '\0'; 1800 slash = strrchr(realpath, '/'); 1802 if (slash) { 1803 *slash 1897 const char *pos, *slash; local [all...] |
| H A D | phar_object.c | 4172 const char *slash; local 4221 slash = zend_memrchr(entry->filename, '/', entry->filename_len); 4223 if (slash) { 4224 fullpath[dest_len + (slash - entry->filename) + 1] = '\0'; 4245 if (slash) { 4246 fullpath[dest_len + (slash - entry->filename) + 1] = '/';
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_directory.c | 203 char slash = SPL_HAS_FLAG(intern->flags, SPL_FILE_DIR_UNIXPATHS) ? '/' : DEFAULT_SLASH; local 214 slash, intern->u.dir.entry.d_name); 1510 char slash = SPL_HAS_FLAG(intern->flags, SPL_FILE_DIR_UNIXPATHS) ? '/' : DEFAULT_SLASH; local 1530 subdir->u.dir.sub_path_len = spprintf(&subdir->u.dir.sub_path, 0, "%s%c%s", intern->u.dir.sub_path, slash, intern->u.dir.entry.d_name); 1568 char slash = SPL_HAS_FLAG(intern->flags, SPL_FILE_DIR_UNIXPATHS) ? '/' : DEFAULT_SLASH; local 1575 len = spprintf(&sub_name, 0, "%s%c%s", intern->u.dir.sub_path, slash, intern->u.dir.entry.d_name);
|
Completed in 21 milliseconds