在PHP 和MySQL 中儲存並顯示Unicode 字串(हिन्दी)
嘗試使用PHPPM文字文字時,您可能會遇到編碼問題。若要解決這些問題,請確保執行以下步驟:
<code class="sql">SET NAMES utf8; ALTER DATABASE YOUR_DATABASE_NAME CHARACTER SET = utf8 COLLATE = utf8_bin;</code>
<code class="php">$result = mysql_query("SELECT * FROM your_table"); while ($row = mysql_fetch_assoc($result)) { echo utf8_encode($row['hindi_column']); }</code>
<code class="html"><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"></code>
此外,您可以使用以下方法在PHP 腳本中設定內容類型:
<code class="php">header('Content-Type: text/html; charset=utf-8');</code>
了解解決方案腳本:
提供的腳本無需指定元標記或標頭資訊即可運作,因為它使用mysql_query() 函數明確將NAMES 設為utf8。這可確保連接和查詢使用 UTF-8 字元集,從而能夠正確顯示印地語文字。
提示:
以上是如何在 PHP 和 MySQL 中儲存和顯示 Unicode(印地語)字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!