如何避免将Unicode字符显示为问号?

时间:2016-04-02 01:41:09

标签: php mysql unicode

在我的表创建中,我使用了以下属性

enter image description here

在Phpmyadmin中插入记录后显示

enter image description here

在前端获取记录。 Unicode字符作为显示问号。怎么解决呢?

1 个答案:

答案 0 :(得分:0)

设置PHP标头:

<meta http-equiv="Content-type" content="text/html; charset=utf-8" />

您可能还需要在HTML中设置元标记:

import {Directive, Attribute} from 'angular2/core';
@Directive({
    selector:   'foo'
})
export class foo {
     constructor(@Attribute('checked') checked: string) {
            if (checked === null){
              //checked is not present
            }else{
              //checked is present
            }
...
    }
....
}

我希望这会有所帮助。