0

我从一个网站上抓取了数据。该数据被放置在数据库中。当我打印数据时:

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 中工作?

4

1 回答 1

0

尝试按照以下步骤操作

如何设置 Unicode

yii 中的 UTF8 字符和 htmlspecialchars 出错

于 2013-03-15T10:33:11.930 回答