Searched refs:replace_ht (Results 1 – 2 of 2) sorted by relevance
/PHP-8.3/ext/pcre/ |
H A D | php_pcre.c | 2064 zend_string *replace_str, HashTable *replace_ht, in php_pcre_replace_array() argument 2072 if (replace_ht) { in php_pcre_replace_array() 2085 if (replace_idx == replace_ht->nNumUsed) { in php_pcre_replace_array() 2090 zv = ZEND_HASH_ELEMENT(replace_ht, replace_idx); in php_pcre_replace_array() 2141 zend_string *replace_str, HashTable *replace_ht, in php_replace_in_subject() argument 2152 result = php_pcre_replace_array(regex_ht, replace_str, replace_ht, subject, in php_replace_in_subject() 2260 HashTable *replace_ht; in preg_replace_common() local 2271 Z_PARAM_ARRAY_HT_OR_STR(replace_ht, replace_str) in preg_replace_common() 2279 if (replace_ht && !regex_ht) { in preg_replace_common() 2286 result = php_replace_in_subject(regex_str, regex_ht, replace_str, replace_ht, in preg_replace_common() [all …]
|
/PHP-8.3/ext/standard/ |
H A D | string.c | 4066 if (replace_ht) { 4082 if (replace_ht) { 4085 if (HT_IS_PACKED(replace_ht)) { 4086 while (replace_idx < replace_ht->nNumUsed) { 4087 replace_entry = &replace_ht->arPacked[replace_idx]; 4094 while (replace_idx < replace_ht->nNumUsed) { 4095 replace_entry = &replace_ht->arData[replace_idx].val; 4102 if (replace_idx < replace_ht->nNumUsed) { 4212 HashTable *replace_ht; local 4223 Z_PARAM_ARRAY_HT_OR_STR(replace_ht, replace_str) [all …]
|
Completed in 22 milliseconds