我有一些中文字符(例如中文(简体))存储在内容类型为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