utf8_encode()函数是PHP中的内置函数,用于将ISO-8859-1字符串编码为UTF-8。已经开发了Unicode,以描述所有语言的所有可能字符,并且包括许多符号,每个符号/字符都有一个唯一的编号。 UTF-8已用于将Unicode字符从一台计算机传输到另一台计算机。并非总是可以将Unicode字符可靠地传输到另一台计算机。
用法:
string utf8_encode( string $string )
参数:此函数接受单个参数$string。它指定需要编码的ISO-8859-1字符串。
返回值:此函数返回一个字符串,该字符串表示成功时的编码字符串或失败时的False。
注意:此函数可用于PHP 4.0.0和更高版本。
范例1:
<?php
// String to encode
$string_to_encode = "\x63";
// Encoding string
echo utf8_encode($string_to_encode);
?>
输出:
c
范例2:
<?php
// Creating an array of 256 elements
$text = array(
"\x20", "\x21", "\x22", "\x23", "\x24", "\x25",
"\x26", "\x27", "\x28", "\x29", "\x2a", "\x2b",
"\x2c", "\x2d", "\x2e", "\x2f", "\x30", "\x31",
"\x32", "\x33", "\x34", "\x35", "\x36", "\x37",
);
// Encoding all characters
foreach( $text as $index ) {
echo utf8_encode($index) . " ";
}
?>
输出:
! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7
参考: https://www.php.net/manual/en/function.utf8-encode.php
相关用法
- p5.js nfc()用法及代码示例
- p5.js nfp()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- p5.js nfs()用法及代码示例
- PHP cos( )用法及代码示例
- PHP sin( )用法及代码示例
- p5.js nf()用法及代码示例
- PHP tan( )用法及代码示例
- PHP pow( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 PHP | utf8_encode() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。