Налаштування під час виконання

The behaviour of these functions is affected by settings in php.ini.

Iconv Параметри Конфігурації
Назва Початково Де можна змінювати Журнал Змін
iconv.input_encoding "" PHP_INI_ALL Available since PHP 4.0.5. Deprecated in PHP 5.6.0.
iconv.output_encoding "" PHP_INI_ALL Available since PHP 4.0.5. Deprecated in PHP 5.6.0.
iconv.internal_encoding "" PHP_INI_ALL Available since PHP 4.0.5. Deprecated in PHP 5.6.0.

Here's a short explanation of the configuration directives.

Увага

Some systems (like IBM AIX) use "ISO8859-1" instead of "ISO-8859-1" so this value has to be used in configuration options and function parameters.

iconv.input_encoding string
Увага

Ця можливість стала DEPRECATED (тобто застарілою) починаючи з PHP 5.6.0. Розраховувати на цю можливість настійно не рекомендується.

PHP 5.6 and later users should leave this empty and set default_charset instead.

iconv.output_encoding string
Увага

Ця можливість стала DEPRECATED (тобто застарілою) починаючи з PHP 5.6.0. Розраховувати на цю можливість настійно не рекомендується.

PHP 5.6 and later users should leave this empty and set default_charset instead.

iconv.internal_encoding string
Увага

Ця можливість стала DEPRECATED (тобто застарілою) починаючи з PHP 5.6.0. Розраховувати на цю можливість настійно не рекомендується.

PHP 5.6 and later users should leave this empty and set default_charset instead.

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top