summaryrefslogtreecommitdiff
path: root/ext/pcre/php_pcre.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2017-06-07 13:50:16 +0300
committerDmitry Stogov <dmitry@zend.com>2017-06-07 13:50:16 +0300
commit71daef93bcbf459980ae4432227302034d1688f6 (patch)
tree5940b2adfc55a0a0c2b875fbb323999f31493b35 /ext/pcre/php_pcre.h
parent5f055273932d5f2a5ef21f4aace92c32e685fad0 (diff)
downloadphp-git-71daef93bcbf459980ae4432227302034d1688f6.tar.gz
preg_replace() optimization
Diffstat (limited to 'ext/pcre/php_pcre.h')
-rw-r--r--ext/pcre/php_pcre.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pcre/php_pcre.h b/ext/pcre/php_pcre.h
index fed47c91a4..9265831d0e 100644
--- a/ext/pcre/php_pcre.h
+++ b/ext/pcre/php_pcre.h
@@ -33,7 +33,7 @@
#include <locale.h>
#endif
-PHPAPI zend_string *php_pcre_replace(zend_string *regex, zend_string *subject_str, char *subject, int subject_len, zval *replace_val, int is_callable_replace, int limit, int *replace_count);
+PHPAPI zend_string *php_pcre_replace(zend_string *regex, zend_string *subject_str, char *subject, int subject_len, zend_string *replace_str, int limit, int *replace_count);
PHPAPI pcre* pcre_get_compiled_regex(zend_string *regex, pcre_extra **extra, int *options);
PHPAPI pcre* pcre_get_compiled_regex_ex(zend_string *regex, pcre_extra **extra, int *preg_options, int *coptions);
@@ -61,8 +61,8 @@ PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(zend_string *regex);
PHPAPI void php_pcre_match_impl( pcre_cache_entry *pce, char *subject, int subject_len, zval *return_value,
zval *subpats, int global, int use_flags, zend_long flags, zend_long start_offset);
-PHPAPI zend_string *php_pcre_replace_impl(pcre_cache_entry *pce, zend_string *subject_str, char *subject, int subject_len, zval *return_value,
- int is_callable_replace, int limit, int *replace_count);
+PHPAPI zend_string *php_pcre_replace_impl(pcre_cache_entry *pce, zend_string *subject_str, char *subject, int subject_len, zend_string *replace_str,
+ int limit, int *replace_count);
PHPAPI void php_pcre_split_impl( pcre_cache_entry *pce, char *subject, int subject_len, zval *return_value,
zend_long limit_val, zend_long flags);