使用PHP 和MySQL 儲存和顯示Unicode 字串(हिन्दी)
嘗試儲存和顯示字串印時,特別是顯示地語等語言中,由於編碼問題。為了解決這些問題,必須在資料庫和 PHP 腳本中設定適當的字元編碼和排序規則。
資料庫配置
PHP 腳本
<code class="php">header('Content-Type: text/html; charset=utf-8');</code>
<code class="php">$result = mysql_query("SET NAMES utf8");</code>
範例腳本
以下PHP 腳本示範如何在MySQL 資料庫中儲存和擷取Unicode 文字並將其顯示在網頁:
<code class="php"><?php include("connection.php"); // Database connection settings // Set charset for MySQL queries $result = mysql_query("SET NAMES utf8"); // Query to retrieve data from the database $cmd = "SELECT * FROM hindi"; $result = mysql_query($cmd); while ($myrow = mysql_fetch_row($result)) { echo ($myrow[0]); } ?></code>
在腳本中,請確保您已包含一個名為「connection.php」的資料庫連接文件,其中包含連接到MySQL 資料庫所需的設定。
其他注意事項
<code class="html"><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"></code>
以上是如何使用 PHP 和 MySQL 儲存和顯示印地語中的 Unicode 字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!