PHP Conference Japan 2024

recode_string

(PHP 4, PHP 5, PHP 7 < 7.4.0)

recode_string根据 recode 请求重新编码字符串

描述

recode_string(string $request, string $string): string

根据 recode 请求 request 重新编码字符串 string

参数

request

所需的 recode 请求类型

string

要重新编码的 string

返回值

返回重新编码的 stringfalse,如果无法执行 recode 请求。

范例

示例 #1 基本 recode_string() 示例

<?php
echo recode_string("us..flat", "The following character has a diacritical mark: á");
?>

备注

一个简单的 recode 请求可能是 "lat1..iso646-de"。

参见

  • 有关 recode 请求的详细说明,请参阅您安装的 GNU Recode 文档。
  • mb_convert_encoding() - 将字符串从一种字符编码转换为另一种字符编码
  • UConverter::transcode() - 将字符串从一种字符编码转换为另一种字符编码
  • iconv() - 将字符串从一种字符编码转换为另一种字符编码

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top