从 mysql 数据库检索数据时,孟加拉字体未显示在 cakephp 中
Bangla font not showing in cakephp when data retrieve from mysql database
我使用的是 cakephp 2.7 版。在我看来,我会展示静态孟加拉语。但是,当我从数据库中获取数据时,孟加拉字体无法正常工作。
Check your layout
file have below line -
对于HTML5
<head>
<meta charset="utf-8">
</head>
同时将您的数据库 Collation
设置为 utf8_general_ci
Search and Uncomment below line from app/Config/database.php
file
//'encoding' => 'utf8',
到
'encoding' => 'utf8',
我使用的是 cakephp 2.7 版。在我看来,我会展示静态孟加拉语。但是,当我从数据库中获取数据时,孟加拉字体无法正常工作。
Check your
layout
file have below line -
对于HTML5
<head>
<meta charset="utf-8">
</head>
同时将您的数据库 Collation
设置为 utf8_general_ci
Search and Uncomment below line from
app/Config/database.php
file
//'encoding' => 'utf8',
到
'encoding' => 'utf8',