mirror of
https://github.com/php/php-src.git
synced 2024-12-13 03:44:17 +08:00
3ebce8e9fc
Closes GH-5514
24 lines
996 B
PHP
24 lines
996 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
function iconv_strlen(string $str, ?string $charset = null): int|false {}
|
|
|
|
function iconv_substr(string $str, int $offset, ?int $length = null, ?string $charset = null): string|false {}
|
|
|
|
function iconv_strpos(string $haystack, string $needle, int $offset = 0, ?string $charset = null): int|false {}
|
|
|
|
function iconv_strrpos(string $haystack, string $needle, ?string $charset = null): int|false {}
|
|
|
|
function iconv_mime_encode(string $field_name, string $field_value, array $preference = []): string|false {}
|
|
|
|
function iconv_mime_decode(string $encoded_string, int $mode = 0, ?string $charset = null): string|false {}
|
|
|
|
function iconv_mime_decode_headers(string $headers, int $mode = 0, ?string $charset = null): array|false {}
|
|
|
|
function iconv(string $in_charset, string $out_charset, string $str): string|false {}
|
|
|
|
function iconv_set_encoding(string $type, string $charset): bool {}
|
|
|
|
function iconv_get_encoding(string $type = "all"): array|string|false {}
|