我有一些中文字符(例如中文(简体)
)存储在内容类型为utf8_bin的mysql数据库中。
我使用以下代码从数据库中提取:
if($stmt = $mysqli->prepare("SELECT c_color FROM colors")){
$stmt->execute();
$stmt->bind_result($ccolor);
$stmt->store_result();
if($stmt->fetch()){
//$ccolor is filled with question marks
}
我做错了什么?我有
header('Content-type: text/html; charset=UTF-8') ;
页面上显示中文字符。好像是php的问题。