Searched refs:chunk_len (Results 1 – 2 of 2) sorted by relevance
65 // Another problem with the old implementation of mb_str_split: If you passed a huge chunk_len
1661 unsigned int chunk_len = char_len * split_len; in PHP_FUNCTION() local1662 unsigned int chunks = ((ZSTR_LEN(str) / chunk_len) + split_len - 1) / split_len; /* round up */ in PHP_FUNCTION()1665 add_next_index_stringl(return_value, (const char*)p, MIN(chunk_len, e - p)); in PHP_FUNCTION()1666 p += chunk_len; in PHP_FUNCTION()
Completed in 19 milliseconds