Searched refs:replace_ht (Results 1 – 2 of 2) sorted by relevance
/PHP-8.0/ext/pcre/ |
H A D | php_pcre.c | 2092 zend_string *replace_str, HashTable *replace_ht, in php_pcre_replace_array() argument 2100 if (replace_ht) { in php_pcre_replace_array() 2113 if (replace_idx == replace_ht->nNumUsed) { in php_pcre_replace_array() 2118 zv = &replace_ht->arData[replace_idx].val; in php_pcre_replace_array() 2169 zend_string *replace_str, HashTable *replace_ht, in php_replace_in_subject() argument 2180 result = php_pcre_replace_array(regex_ht, replace_str, replace_ht, subject, in php_replace_in_subject() 2288 HashTable *replace_ht; in preg_replace_common() local 2299 Z_PARAM_ARRAY_HT_OR_STR(replace_ht, replace_str) in preg_replace_common() 2307 if (replace_ht && !regex_ht) { in preg_replace_common() 2314 result = php_replace_in_subject(regex_str, regex_ht, replace_str, replace_ht, in preg_replace_common() [all …]
|
/PHP-8.0/ext/standard/ |
H A D | string.c | 4058 zend_string *search_str, HashTable *search_ht, zend_string *replace_str, HashTable *replace_ht, argument 4079 if (replace_ht) { 4095 if (replace_ht) { 4098 while (replace_idx < replace_ht->nNumUsed) { 4099 replace_entry = &replace_ht->arData[replace_idx].val; 4105 if (replace_idx < replace_ht->nNumUsed) { 4215 HashTable *replace_ht; local 4226 Z_PARAM_ARRAY_HT_OR_STR(replace_ht, replace_str) 4233 if (search_str && replace_ht) { 4250 …count += php_str_replace_in_subject(search_str, search_ht, replace_str, replace_ht, subject_str, &… [all …]
|
Completed in 41 milliseconds