Searched refs:endlen (Results 1 – 1 of 1) sorted by relevance
/PHP-8.3/ext/standard/ |
H A D | string.c | 1959 static zend_string *php_chunk_split(const char *src, size_t srclen, const char *end, size_t endlen,… argument 1975 dest = zend_string_safe_alloc(chunks, endlen, srclen, 0); 1980 memcpy(q, end, endlen); 1981 q += endlen; 1988 memcpy(q, end, endlen); 1989 q += endlen; 2004 size_t endlen = 2; local 2012 Z_PARAM_STRING(end, endlen) 2022 result = zend_string_safe_alloc(ZSTR_LEN(str), 1, endlen, 0); 2024 memcpy(ZSTR_VAL(result) + ZSTR_LEN(str), end, endlen); [all …]
|
Completed in 16 milliseconds