Searched defs:replace (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_3/win32/ |
| H A D | sendmail.c | 160 zval *replace; local 166 MAKE_STD_ZVAL(replace); 167 ZVAL_STRING(replace, PHP_WIN32_MAIL_UNIFY_REPLACE, 0); 171 replace, 177 FREE_ZVAL(replace); 181 ZVAL_STRING(replace, PHP_WIN32_MAIL_RMVDBL_REPLACE, 0); 185 replace, 191 FREE_ZVAL(replace);
|
| /PHP_5_3/ext/ereg/ |
| H A D | ereg.c | 403 PHPAPI char *php_ereg_replace(const char *pattern, const char *replace, const char *string, int icase, int extended) argument 462 walk = replace; 488 walk = replace; 556 char *replace; local 579 replace = estrndup(Z_STRVAL_PP(arg_replace), Z_STRLEN_PP(arg_replace)); 581 replace = STR_EMPTY_ALLOC(); 585 replace = emalloc(2); 586 replace[0] = (char) Z_LVAL_PP(arg_replace); 587 replace[1] = '\0'; 597 ret = php_ereg_replace(pattern, replace, strin [all...] |
| /PHP_5_3/ext/mbstring/ |
| H A D | php_mbregex.c | 794 char *replace; local 831 &replace, &replace_len, 864 description = zend_make_compiled_string_description("mbregex replace" TSRMLS_CC); 894 p = replace; 977 Case insensitive replace regular expression for multibyte string */
|
| /PHP_5_3/ext/standard/ |
| H A D | array.c | 2052 * hashtable and replace it with new one */ 2069 Removes the elements designated by offset and length and replace them with supplied array */ 2358 static void php_array_merge_or_replace_wrapper(INTERNAL_FUNCTION_PARAMETERS, int recursive, int replace) /* {{{ */ argument 2385 if (!replace) {
|
| H A D | string.c | 3579 static void php_str_replace_in_subject(zval *search, zval *replace, zval **subject, zval *result, int case_sensitivity, int *replace_count) argument 3602 if (Z_TYPE_P(replace) == IS_ARRAY) { 3603 zend_hash_internal_pointer_reset(Z_ARRVAL_P(replace)); 3606 replace_value = Z_STRVAL_P(replace); 3607 replace_len = Z_STRLEN_P(replace); 3617 if (Z_TYPE_P(replace) == IS_ARRAY) { 3618 zend_hash_move_forward(Z_ARRVAL_P(replace)); 3623 /* If replace is an array. */ 3624 if (Z_TYPE_P(replace) == IS_ARRAY) { 3626 if (zend_hash_get_current_data(Z_ARRVAL_P(replace), (voi 3692 zval **subject, **search, **replace, **subject_entry, **zcount = NULL; local [all...] |
| /PHP_5_3/sapi/apache_hooks/ |
| H A D | php_apache.c | 586 zend_bool replace = 0; local 589 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|zb", &first, &second, &replace) == FAILURE) { 611 if (replace) { 635 if (replace) { 653 /* {{{ proto array apache_request_headers_out([{string name|array list} [, string value [, bool replace = false]]]) 672 /* {{{ proto array apache_request_err_headers_out([{string name|array list} [, string value [, bool replace = false]]])
|
| /PHP_5_3/ext/pcre/ |
| H A D | php_pcre.c | 999 *replace=NULL, /* Replacement string */ local 1024 replace = Z_STRVAL_P(replace_val); 1026 replace_end = replace + replace_len; 1086 eval_result_len = preg_do_eval(replace, replace_len, subject, 1094 walk = replace; 1136 walk = replace; 1216 static char *php_replace_in_subject(zval *regex, zval *replace, zval **subject, int *result_len, int limit, int is_callable_replace, int *replace_count TSRMLS_DC) argument 1240 replace_value = replace; 1241 if (Z_TYPE_P(replace) == IS_ARRAY && !is_callable_replace) 1242 zend_hash_internal_pointer_reset(Z_ARRVAL_P(replace)); 1307 **replace, local [all...] |
| /PHP_5_3/main/ |
| H A D | main.c | 686 char *replace = php_escape_html_entities(buffer, buffer_len, &len, 0, ENT_COMPAT, NULL TSRMLS_CC); local 688 buffer = replace; 744 char *replace = php_escape_html_entities(origin, origin_len, &len, 0, ENT_COMPAT, NULL TSRMLS_CC); local 746 origin = replace;
|
Completed in 28 milliseconds