Searched defs:new_name (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_5/ext/standard/ |
| H A D | file.c | 1423 /* {{{ proto bool rename(string old_name, string new_name[, resource context]) 1427 char *old_name, *new_name; local 1433 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "pp|r", &old_name, &old_name_len, &new_name, &new_name_len, &zcontext) == FAILURE) { 1449 if (wrapper != php_stream_locate_url_wrapper(new_name, NULL, 0 TSRMLS_CC)) { 1456 RETURN_BOOL(wrapper->wops->rename(wrapper, old_name, new_name, 0, context TSRMLS_CC));
|
| /PHP_5_5/ext/opcache/ |
| H A D | zend_persist.c | 349 char *new_name; local 350 if ((new_name = zend_shared_alloc_get_xlat_entry(op_array->function_name))) { 351 op_array->function_name = new_name;
|
| /PHP_5_5/ext/zip/ |
| H A D | php_zip.c | 2232 /* {{{ proto bool ZipArchive::renameIndex(int index, string new_name) 2233 Rename an entry selected by its index to new_name */ 2239 char *new_name; local 2249 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ls", &index, &new_name, &new_name_len) == FAILURE) { 2261 if (zip_rename(intern, index, (const char *)new_name) != 0) { 2268 /* {{{ proto bool ZipArchive::renameName(string name, string new_name) 2269 Rename an entry selected by its name to new_name */ 2275 char *name, *new_name; local 2284 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &name, &name_len, &new_name, &new_name_len) == FAILURE) { 2295 if (zip_rename(intern, sb.index, (const char *)new_name)) { [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_compile.c | 7008 void zend_do_use(znode *ns_name, znode *new_name, int is_global TSRMLS_DC) /* {{{ */ argument 7022 if (new_name) { 7023 name = &new_name->u.constant; 7028 So we extract the last part of compound name to use as a new_name */
|
Completed in 27 milliseconds