我在wordpress db中创建了自定义表以使用我的插件需求。
我有希伯来名字的广告系列,保存到列(varchar(100)utf8_unicode_ci) 在DB中,我看不到希伯来语,但是:מו×'ר×××די×。
当我尝试通过此代码从DB获取此数据时:
global $wpdb;
$list = $wpdb->get_results( "SELECT ExternalCustomerId, AccountDescriptiveName FROM My DB GROUP BY AccountDescriptiveName;" );
foreach ($list as $key => $object) {
echo $object->AccountDescriptiveName;
}
我得到מו×'ר×××די×
我的网站有meta charset =“utf-8”/>在
我如何获得常规希伯来语而不是UTF-8字符集?