iconv 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

ob_iconv_handler

(PHP 4 >= 4.0.5, PHP 5)

ob_iconv_handlerConvert character encoding as output buffer handler

说明

string ob_iconv_handler ( string $contents , int $status )

Converts the string encoded in internal_encoding to output_encoding .

internal_encoding and output_encoding should be defined in the php.ini file or in iconv_set_encoding().

参数

See ob_start() for information about this handler parameters.

返回值

See ob_start() for information about this handler return values.

范例

Example #1 ob_iconv_handler() example:

<?php
iconv_set_encoding
("internal_encoding""UTF-8");
iconv_set_encoding("output_encoding""ISO-8859-1");
ob_start("ob_iconv_handler"); // start output buffering
?>

参见


iconv 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程