如何使用php和sql server在网页中显示阿拉伯字符?阿拉伯数据存储在数据库(sql server)中。现在我想用php在网页上显示这些数据。我怎么能这样做?
答案 0 :(得分:1)
某些SO档案可能会帮助您一些想法 -
Storing and displaying unicode string (हिन्दी) using PHP and MySQL
Arabic text displaying in webapp without db changes
what is the best method to build "multilingual" script in php?
答案 1 :(得分:1)
注意:基于php / mysql的例子:
CREATE
语法<meta
http-equiv=”Content-Type”
content=”text/html; charset=UTF-8″>
SQL语句:
//assumed : connection to the database is open
mysql_query("SET CHARACTER SET utf8");
mysql_query("SET NAMES 'utf8'");
// select records
mysql_query("SELECT * FROM en_authors");
答案 2 :(得分:1)
使用php
在mssql中使用Unicode的官方解决方案$serverName = "MyServer";
$connectionInfo = array( "Database"=>"AdventureWorks", "CharacterSet" => "UTF-8");
$conn = sqlsrv_connect( $serverName, $connectionInfo);
在您的连接代码中使用它,
在utf 8问题上获得更多支持
http://msdn.microsoft.com/en-us/library/cc626307.aspx