stream_encoding

(Информация о версии неизвестна, возможно, только в SVN)

stream_encodingУстанавливает кодировку для потока

Описание

bool stream_encoding ( resource $stream [, string $encoding ] )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Коментарии

with php 5.2+ you can (should!) use the following line next to e.g. fopen() and specify the encoding of the content:

<?php
$charset 
'UTF-8';

stream_encoding($handle$charset);
?>

in addition php 6 seems to need this since it triggers a notice level error if special chars must be converted and the above command is not specified (binary data excluded - just talkin bout clear text in this comment)
2009-06-19 18:46:19
http://php5.kiev.ua/manual/ru/function.stream-encoding.html

    Поддержать сайт на родительском проекте КГБ