SQL server不支持utf8 php却用utf8的矛盾问题解决方法
核心代码
function convert2utf8($string) { return iconv("gbk","utf-8",$string); } function convert2gbk($string) { return iconv("utf-8","gbk",$string); }
当插入数据,或修改数据的时候,把utf-8,转为gbk,存入数据库。
当获取数据的时候,将数据转为utf-8。
这个方法在底层的数据中设计,上层调用即可。
<?php class dao_dao extends zend_db_table { public function returndb(){ return $db = &$this->getadapter(); } public function getdata($table,$where = false, $order = 'id asc', $pagesize = false, $offset = false, $count = false, $from = false, $join = false, $group = false) { $db = &$this->getadapter(); $select = $db->select(); if ($where && is_array($where)) { foreach ($where as $key => $val) { //print_r($where); if($val['type']==1){ $select->where($key, $val['val']); }else{ $select->orwhere($key, $val['val']); } } } if (!$from) $from = '*'; //echo $select."<br/>"; if ($pagesize) { $select->limit($pagesize, $offset); } //echo $select."<br/>"; if (is_array($order)) { foreach ($order as $value) { $select->order($value); } } else { $select->order($order); } //echo $select."<br/>"; $select->from($table, $count ? "count(".$table.".id)" : $from); if (is_array($group)) { foreach ($group as $key => $val) { $select->group($val); } if ($count) { $result = $db->fetchall($select); //echo $select."<br/>"; return $result; } } else { if ($count) { $result = $db->fetchone($select); //echo $select."<br/>"; return $result; } } if (is_array($join)) { foreach ($join as $key => $val) { $select->join($key, $val[0], $val[1]); } } //echo $select."<br/>"; //echo $select;exit; $result = $db->fetchall($select); foreach ($result as $key => $value) { foreach ($value as $key2 => $value2) { $result[$key][$key2] = $this->convert2utf8($value2); } } return $result; } /** * 向表中插入数据 * array $adata 数据 * string $table 表名 * int $insterid 是否需要返回插入id * @return true or false or int */ // @bianding 2013.11.04 更改了pdo中mssql.php的lastinsertid()函数 // @bianding 2013.11.04 经测试 mssql.php中的lastinsertid()函数中的select两种方式都行 function savedata($adata, $table, $insterid = 0, $alog = false) { $db = & $this->getadapter(); foreach ($adata as $key => $value) { $adata[$key] = $this->convert2gbk($value); } if ($db->insert($table, $adata)) { //var_dump($db->getprofiler()); $insertedid = $db->lastinsertid(); if ($insterid) { return $insertedid; } else { return true; } } else { return false; } } /** * 删除表中数据 * * @param string $table 表名 * @param string $where 'id ='.$id 条件 * @return true or false */ function deldata($table, $where, $alog = false) { $db = & $this->getadapter(); if ($db->delete($table, $where)) { return true; } else { return false; } } /** * 更新表中数据 * * @param string $table * @param array $adata * @param string $where 'id ='.$id * @return true or false */ function updatedata($table, $adata, $cond, $alog = false) { $db = & $this->getadapter(); foreach ($adata as $key => $value) { $adata[$key] = $this->convert2gbk($value); } if ($db->update($table, $adata, $cond)) { return true; } else { return false; } } public function cleartable($table) { $db = &$this->getadapter(); $result = $db->query('truncate table ' . $table); } public function executesql($strsql) { $db = &$this->getadapter(); $result = $db->query($strsql); } function convert2utf8($string) { return iconv("gbk","utf-8",$string); } function convert2gbk($string) { return iconv("utf-8","gbk",$string); } }
sqlserver 建库指定utf-8 修改库为utf-8编码
create database paas collate chinese_prc_ci_as
go
alter database paas collate chinese_prc_ci_as
go
让asp和ms sql server支持utf-8编码存储多国语言文字
近日在asp+ms sql存储utf-8编码内容的时候,出现乱码的情况,经过查询发现要使sql server支持utf-8编码格式,必须做一些修改才可以。
1、确保asp页面是utf-8编码的,并在asp页面顶部声明中使用<%@ language = vbscript codepage = 65001%>进行编码声明
2、输出的html页面中声明字符集:<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
3、在进行url参数传递的时候,要使用server.urlencode()方法进行编码
4、使用js进行url参数传递中文的时候,要使用escape进行编码
5、在将utf-8编码的内容存入sql server数据库中的时候,要存储的字段必须设置为nvarchar类型,sql语句要在内容前加n表示,如insert into user (name) values (n´&username&´),除id意外的字段都需要加n。
上一篇: asp.net中List的使用方法