YII:UTF8编码不起作用?

时间:2013-03-15 09:13:52

标签: php encoding utf-8 character-encoding yii

我从网站上删除了数据。此数据放在数据库中。当我打印数据时:

print $row->description;

看起来像这样:

• Shoot great photos in low light with bright lens• 

我以前可以通过添加:

来解决这个问题
header('Content-Type: text/html; charset=UTF-8');
mb_internal_encoding('UTF-8');

我现在尝试将此添加到YII的index.php,但输出不会改变。我也试过了:

$decoded = utf8_decode($row->description);
print $decoded;

但后来我得到了:

�?� Shoot great photos in low light with bright lens�?�

我怎样才能在YII中使用它?

1 个答案:

答案 0 :(得分:0)