2019-08-24 00:10:01 +08:00
|
|
|
<?php
|
|
|
|
|
2020-04-05 05:51:10 +08:00
|
|
|
/** @generate-function-entries */
|
|
|
|
|
2020-05-02 21:25:25 +08:00
|
|
|
function iconv_strlen(string $str, ?string $charset = null): int|false {}
|
2019-08-24 00:10:01 +08:00
|
|
|
|
2020-05-02 21:25:25 +08:00
|
|
|
function iconv_substr(string $str, int $offset, ?int $length = null, ?string $charset = null): string|false {}
|
2019-08-24 00:10:01 +08:00
|
|
|
|
2020-05-02 21:25:25 +08:00
|
|
|
function iconv_strpos(string $haystack, string $needle, int $offset = 0, ?string $charset = null): int|false {}
|
2019-08-24 00:10:01 +08:00
|
|
|
|
2020-05-02 21:25:25 +08:00
|
|
|
function iconv_strrpos(string $haystack, string $needle, ?string $charset = null): int|false {}
|
2019-08-24 00:10:01 +08:00
|
|
|
|
2019-11-09 06:29:12 +08:00
|
|
|
function iconv_mime_encode(string $field_name, string $field_value, array $preference = []): string|false {}
|
2019-08-24 00:10:01 +08:00
|
|
|
|
2020-05-02 21:25:25 +08:00
|
|
|
function iconv_mime_decode(string $encoded_string, int $mode = 0, ?string $charset = null): string|false {}
|
2019-08-24 00:10:01 +08:00
|
|
|
|
2020-05-02 21:25:25 +08:00
|
|
|
function iconv_mime_decode_headers(string $headers, int $mode = 0, ?string $charset = null): array|false {}
|
2019-08-24 00:10:01 +08:00
|
|
|
|
2019-11-09 06:29:12 +08:00
|
|
|
function iconv(string $in_charset, string $out_charset, string $str): string|false {}
|
2019-08-24 00:10:01 +08:00
|
|
|
|
|
|
|
function iconv_set_encoding(string $type, string $charset): bool {}
|
|
|
|
|
2020-05-02 21:25:25 +08:00
|
|
|
function iconv_get_encoding(string $type = "all"): array|string|false {}
|