Searched defs:replace (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_5/ext/ereg/ |
| H A D | ereg.c | 403 PHP_EREG_API char *php_ereg_replace(const char *pattern, const char *replace, const char *string, int icase, int extended TSRMLS_DC) 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_5/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_5/ext/pcre/ |
| H A D | php_pcre.c | 1025 *replace=NULL, /* Replacement string */ local 1050 replace = Z_STRVAL_P(replace_val); 1052 replace_end = replace + replace_len; 1116 eval_result_len = preg_do_eval(replace, replace_len, subject, 1124 walk = replace; 1166 walk = replace; 1246 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 1270 replace_value = replace; 1271 if (Z_TYPE_P(replace) == IS_ARRAY && !is_callable_replace) 1272 zend_hash_internal_pointer_reset(Z_ARRVAL_P(replace)); 1337 **replace, local [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | string.c | 3834 static void php_str_replace_in_subject(zval *search, zval *replace, zval **subject, zval *result, int case_sensitivity, int *replace_count) argument 3857 if (Z_TYPE_P(replace) == IS_ARRAY) { 3858 zend_hash_internal_pointer_reset(Z_ARRVAL_P(replace)); 3861 replace_value = Z_STRVAL_P(replace); 3862 replace_len = Z_STRLEN_P(replace); 3872 if (Z_TYPE_P(replace) == IS_ARRAY) { 3873 zend_hash_move_forward(Z_ARRVAL_P(replace)); 3878 /* If replace is an array. */ 3879 if (Z_TYPE_P(replace) == IS_ARRAY) { 3881 if (zend_hash_get_current_data(Z_ARRVAL_P(replace), (voi 3947 zval **subject, **search, **replace, **subject_entry, **zcount = NULL; local [all...] |
| H A D | array.c | 2027 * hashtable and replace it with new one */ 2044 Removes the elements designated by offset and length and replace them with supplied array */ 2333 static void php_array_merge_or_replace_wrapper(INTERNAL_FUNCTION_PARAMETERS, int recursive, int replace) /* {{{ */ argument 2360 if (!replace) {
|
| /PHP_5_5/main/ |
| H A D | main.c | 715 char *replace = php_escape_html_entities(buffer, buffer_len, &len, 0, ENT_COMPAT, NULL TSRMLS_CC); local 717 buffer = replace; 773 char *replace = php_escape_html_entities(origin, origin_len, &len, 0, ENT_COMPAT, NULL TSRMLS_CC); local 775 origin = replace;
|
| /PHP_5_5/ext/mbstring/ |
| H A D | php_mbregex.c | 794 char *replace; local 835 &replace, &replace_len, 877 description = zend_make_compiled_string_description("mbregex replace" TSRMLS_CC); 916 p = replace; 1034 Case insensitive replace regular expression for multibyte string */
|
| /PHP_5_5/win32/ |
| H A D | sendmail.c | 161 zval *replace; local 167 MAKE_STD_ZVAL(replace); 168 ZVAL_STRING(replace, PHP_WIN32_MAIL_UNIFY_REPLACE, 0); 172 replace, 178 FREE_ZVAL(replace); 182 ZVAL_STRING(replace, PHP_WIN32_MAIL_RMVDBL_REPLACE, 0); 186 replace, 192 FREE_ZVAL(replace);
|
Completed in 47 milliseconds