为了避免乱码,我一般都用utf8编码,在cakephp开发过程中,需要注意的地方:
1. database.php,连接数组里面加上'encoding'=>'utf8'
2. core.php,确认有Configure::write('App.encoding', 'UTF-8');
response header不用专门设置
3. meta tag:
4. 使用htmlentities函数时需要调用第三个参数,例如
5. file_get_contents返回的数据可能是不同编码,考虑用
string
mb_detect_encoding (
string $str [,
mixed $encoding_list = mb_detect_order() [,
bool $strict = false ]] )
配合使用转换编码,不过因为还没涉及这部分的工作没去看,看网上文章似乎gb2312到utf8有些问题,这一条先暂记着。。