PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

id3> <iconv
Last updated: Sun, 25 Nov 2007

view this page in

ob_iconv_handler

(PHP 4 >= 4.0.5, PHP 5)

ob_iconv_handler — 출력 버퍼 핸들러로 문자 엔코딩을 변환한다

Description

array ob_iconv_handler ( string $contents , int $status )

internal_encoding 에서 인코딩된 문자열을 output_encoding 로 변환한다.

internal_encodingoutput_encodingiconv_set_encoding()함수나 설정파일에서 정의되어있어야 한다.

Example#1 ob_iconv_handler() example:

ob_start("ob_iconv_handler"); // start output buffering

See also: iconv_get_encoding() and iconv_set_encoding().



add a note add a note User Contributed Notes
ob_iconv_handler
st33mann at gmx dot n3t
04-Oct-2005 11:43
Just a quick note that may be helpful for some:
It seems to me that this function also modifies the HTTP Content-Type header that's sent to the client (at least in combination with the iconv_set_encoding() function).

If you specify an encoding ending with "//TRANSLIT" or "//IGNORE" (valid in iconv), it will still send the encoding name in the HTTP header. This makes it an invalid character set unfortunately.

For example:
<?php
iconv_set_encoding
("internal_encoding","UTF-8");
iconv_set_encoding("output_encoding","ISO-8859-1//TRANSLIT");
ob_start("ob_iconv_handler");
?>
will send a Content-Type header of "ISO-8859-1//TRANSLIT".

id3> <iconv
Last updated: Sun, 25 Nov 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites