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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。