replace           403 ext/ereg/ereg.c PHP_EREG_API char *php_ereg_replace(const char *pattern, const char *replace, const char *string, int icase, int extended TSRMLS_DC)
replace           462 ext/ereg/ereg.c 			walk = replace;
replace           488 ext/ereg/ereg.c 			walk = replace;
replace           556 ext/ereg/ereg.c 	char *replace;
replace           579 ext/ereg/ereg.c 			replace = estrndup(Z_STRVAL_PP(arg_replace), Z_STRLEN_PP(arg_replace));
replace           581 ext/ereg/ereg.c 			replace = STR_EMPTY_ALLOC();
replace           585 ext/ereg/ereg.c 		replace = emalloc(2);
replace           586 ext/ereg/ereg.c 		replace[0] = (char) Z_LVAL_PP(arg_replace);
replace           587 ext/ereg/ereg.c 		replace[1] = '\0';
replace           597 ext/ereg/ereg.c 	ret = php_ereg_replace(pattern, replace, string, icase, 1 TSRMLS_CC);
replace           606 ext/ereg/ereg.c 	STR_FREE(replace);
replace            38 ext/ereg/php_ereg.h PHP_EREG_API char *php_ereg_replace(const char *pattern, const char *replace, const char *string, int icase, int extended TSRMLS_DC);
replace           794 ext/mbstring/php_mbregex.c 	char *replace;
replace           835 ext/mbstring/php_mbregex.c 						&replace, &replace_len,
replace           916 ext/mbstring/php_mbregex.c 				p = replace;
replace          1088 ext/pcre/php_pcre.c 					*replace=NULL,		/* Replacement string */
replace          1118 ext/pcre/php_pcre.c 		replace = Z_STRVAL_P(replace_val);
replace          1120 ext/pcre/php_pcre.c 		replace_end = replace + replace_len;
replace          1184 ext/pcre/php_pcre.c 				eval_result_len = preg_do_eval(replace, replace_len, subject,
replace          1192 ext/pcre/php_pcre.c 				walk = replace;
replace          1234 ext/pcre/php_pcre.c 				walk = replace;
replace          1316 ext/pcre/php_pcre.c 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)
replace          1340 ext/pcre/php_pcre.c 		replace_value = replace;
replace          1341 ext/pcre/php_pcre.c 		if (Z_TYPE_P(replace) == IS_ARRAY && !is_callable_replace)
replace          1342 ext/pcre/php_pcre.c 			zend_hash_internal_pointer_reset(Z_ARRVAL_P(replace));
replace          1350 ext/pcre/php_pcre.c 			if (Z_TYPE_P(replace) == IS_ARRAY && !is_callable_replace) {
replace          1352 ext/pcre/php_pcre.c 				if (zend_hash_get_current_data(Z_ARRVAL_P(replace), (void **)&replace_entry) == SUCCESS) {
replace          1357 ext/pcre/php_pcre.c 					zend_hash_move_forward(Z_ARRVAL_P(replace));
replace          1392 ext/pcre/php_pcre.c 								  replace,
replace          1407 ext/pcre/php_pcre.c 				   **replace,
replace          1422 ext/pcre/php_pcre.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ZZZ|lZ", &regex, &replace, &subject, &limit, &zcount) == FAILURE) {
replace          1426 ext/pcre/php_pcre.c 	if (!is_callable_replace && Z_TYPE_PP(replace) == IS_ARRAY && Z_TYPE_PP(regex) != IS_ARRAY) {
replace          1431 ext/pcre/php_pcre.c 	SEPARATE_ZVAL(replace);
replace          1432 ext/pcre/php_pcre.c 	if (Z_TYPE_PP(replace) != IS_ARRAY && (Z_TYPE_PP(replace) != IS_OBJECT || !is_callable_replace)) {
replace          1433 ext/pcre/php_pcre.c 		convert_to_string_ex(replace);
replace          1436 ext/pcre/php_pcre.c 		if (!zend_is_callable(*replace, 0, &callback_name TSRMLS_CC)) {
replace          1465 ext/pcre/php_pcre.c 			if ((result = php_replace_in_subject(*regex, *replace, subject_entry, &result_len, limit_val, is_callable_replace, &replace_count TSRMLS_CC)) != NULL) {
replace          1487 ext/pcre/php_pcre.c 		if ((result = php_replace_in_subject(*regex, *replace, subject, &result_len, limit_val, is_callable_replace, &replace_count TSRMLS_CC)) != NULL) {
replace          1972 ext/pcre/php_pcre.c     ZEND_ARG_INFO(0, replace)
replace          98183 ext/sqlite3/libsqlite/sqlite3.c     FUNCTION(replace,            3, 0, 0, replaceFunc      ),
replace          2225 ext/standard/array.c static void php_array_merge_or_replace_wrapper(INTERNAL_FUNCTION_PARAMETERS, int recursive, int replace) /* {{{ */
replace          2251 ext/standard/array.c 		if (!replace) {
replace          1424 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, replace)
replace          2276 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, replace)
replace          2341 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, replace)
replace          2348 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, replace)
replace          3860 ext/standard/string.c static void php_str_replace_in_subject(zval *search, zval *replace, zval **subject, zval *result, int case_sensitivity, int *replace_count)
replace          3883 ext/standard/string.c 		if (Z_TYPE_P(replace) == IS_ARRAY) {
replace          3884 ext/standard/string.c 			zend_hash_internal_pointer_reset(Z_ARRVAL_P(replace));
replace          3887 ext/standard/string.c 			replace_value = Z_STRVAL_P(replace);
replace          3888 ext/standard/string.c 			replace_len = Z_STRLEN_P(replace);
replace          3898 ext/standard/string.c 				if (Z_TYPE_P(replace) == IS_ARRAY) {
replace          3899 ext/standard/string.c 					zend_hash_move_forward(Z_ARRVAL_P(replace));
replace          3905 ext/standard/string.c 			if (Z_TYPE_P(replace) == IS_ARRAY) {
replace          3907 ext/standard/string.c 				if (zend_hash_get_current_data(Z_ARRVAL_P(replace), (void **)&replace_entry) == SUCCESS) {
replace          3915 ext/standard/string.c 					zend_hash_move_forward(Z_ARRVAL_P(replace));
replace          3953 ext/standard/string.c 							Z_STRVAL_P(replace),
replace          3954 ext/standard/string.c 							Z_STRLEN_P(replace),
replace          3961 ext/standard/string.c 													Z_STRVAL_P(replace), Z_STRLEN_P(replace), &Z_STRLEN_P(result), case_sensitivity, replace_count);
replace          3973 ext/standard/string.c 	zval **subject, **search, **replace, **subject_entry, **zcount = NULL;
replace          3981 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ZZZ|Z", &search, &replace, &subject, &zcount) == FAILURE) {
replace          3986 ext/standard/string.c 	SEPARATE_ZVAL(replace);
replace          3992 ext/standard/string.c 		convert_to_string_ex(replace);
replace          3993 ext/standard/string.c 	} else if (Z_TYPE_PP(replace) != IS_ARRAY) {
replace          3994 ext/standard/string.c 		convert_to_string_ex(replace);
replace          4008 ext/standard/string.c 				php_str_replace_in_subject(*search, *replace, subject_entry, result, case_sensitivity, (argc > 3) ? &count : NULL);
replace          4029 ext/standard/string.c 		php_str_replace_in_subject(*search, *replace, subject, return_value, case_sensitivity, (argc > 3) ? &count : NULL);
replace           638 main/SAPI.c    SAPI_API int sapi_add_header_ex(char *header_line, uint header_line_len, zend_bool duplicate, zend_bool replace TSRMLS_DC)
replace           646 main/SAPI.c    	r = sapi_header_op(replace ? SAPI_HEADER_REPLACE : SAPI_HEADER_ADD,
replace           187 main/SAPI.h    SAPI_API int sapi_add_header_ex(char *header_line, uint header_line_len, zend_bool duplicate, zend_bool replace TSRMLS_DC);
replace           790 main/main.c    		char *replace = php_escape_html_entities(buffer, buffer_len, &len, 0, ENT_COMPAT, NULL TSRMLS_CC);
replace           792 main/main.c    		if (!replace || len < 1) {
replace           793 main/main.c    			replace = php_escape_html_entities(buffer, buffer_len, &len, 0, ENT_COMPAT | ENT_HTML_SUBSTITUTE_ERRORS, NULL TSRMLS_CC);
replace           798 main/main.c    		if (replace) {
replace           799 main/main.c    			buffer = replace;
replace           859 main/main.c    		char *replace = php_escape_html_entities(origin, origin_len, &len, 0, ENT_COMPAT, NULL TSRMLS_CC);
replace           861 main/main.c    		origin = replace;
replace           586 sapi/apache_hooks/php_apache.c 	zend_bool replace = 0;
replace           589 sapi/apache_hooks/php_apache.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|zb", &first, &second, &replace) == FAILURE) {
replace           611 sapi/apache_hooks/php_apache.c 							if (replace) {
replace           635 sapi/apache_hooks/php_apache.c 				if (replace) {
replace           161 win32/sendmail.c 	zval *replace;
replace           167 win32/sendmail.c 	MAKE_STD_ZVAL(replace);
replace           168 win32/sendmail.c 	ZVAL_STRING(replace, PHP_WIN32_MAIL_UNIFY_REPLACE, 0);
replace           172 win32/sendmail.c 							  replace,
replace           178 win32/sendmail.c 		FREE_ZVAL(replace);
replace           182 win32/sendmail.c 	ZVAL_STRING(replace, PHP_WIN32_MAIL_RMVDBL_REPLACE, 0);
replace           186 win32/sendmail.c 							   replace,
replace           192 win32/sendmail.c 	FREE_ZVAL(replace);