Searched refs:charset_token (Results 1 – 1 of 1) sorted by relevance
/PHP-8.3/ext/imap/ |
H A D | php_imap.c | 4040 zend_long charset_token, encoding_token, end_token, end, offset=0, i; in PHP_FUNCTION() local 4056 charset_token -= (zend_long)string; in PHP_FUNCTION() 4057 if (offset != charset_token) { /* Is there anything before the encoded data? */ in PHP_FUNCTION() 4059 memcpy(text, &string[offset], charset_token-offset); in PHP_FUNCTION() 4060 text[charset_token - offset] = 0x00; in PHP_FUNCTION() 4065 …if ((encoding_token = (zend_long)php_memnstr(&string[charset_token+2], "?", 1, string+end))) { /*… in PHP_FUNCTION() 4069 …memcpy(charset, &string[charset_token + 2], encoding_token - (charset_token + 2)); /* Extract char… in PHP_FUNCTION() 4070 charset[encoding_token-(charset_token + 2)] = 0x00; in PHP_FUNCTION() 4108 charset_token = offset; in PHP_FUNCTION() 4112 …memcpy(text, &string[charset_token], end - charset_token); /* Extract unencoded text from string */ in PHP_FUNCTION() [all …]
|
Completed in 14 milliseconds