在 PHP 中,有多種方法從各自的 Unicode 程式碼點擷取字元。本文深入研究這些方法,並為每個方法提供程式碼範例。
方法:
mb_ord()
程式碼:
<code class="php">$unicodeCodePoint = 0x010F; $character = mb_ord('ó');</code>
mb_chr()
代碼:
<code class="php">$unicodeCodePoint = 243; $character = mb_chr($unicodeCodePoint);</code>
mb_html_entity_decode( )
程式碼:
<code class="php">$unicodeCodePoint = '010F'; $character = mb_html_entity_decode('&#' . $unicodeCodePoint . ';');</code>
var_dump()
代碼:
以上是如何在 PHP 中從 Unicode 碼位取得字元?的詳細內容。更多資訊請關注PHP中文網其他相關文章!