在 PHP 中從 Unicode 代碼點獲取字元
PHP 提供了幾個函數來操作由代碼點表示的 Unicode 字元。一個常見的場景涉及檢索與特定 Unicode 代碼點關聯的字元。
解決方案
PHP 提供輔助函數來解碼 HTML 實體並在 UTF-8 和 UCS 之間進行轉換-4BE 編碼。利用這些函數,我們可以從 Unicode 代碼點檢索字符,如下所示:
<code class="php">header('Content-Encoding: UTF-8'); function mb_html_entity_decode($string) { // ... Encoding conversion and decoding logic } function mb_ord($string) { // ... UTF-8 to UCS-4BE conversion and unpacking } function mb_chr($string) { // ... HTML entity encoding and decoding } // Example: Getting the character for U+010F $codePoint = hexdec('010F'); print mb_chr($codePoint); // Outputs ó</code>
或:
<code class="php">$codePoint = 243; print mb_ord('ó'); // Outputs 243 print mb_chr(243); // Outputs ó</code>
以上是如何在 PHP 中從 Unicode 碼位檢索字元?的詳細內容。更多資訊請關注PHP中文網其他相關文章!