CakePHP中配置AppModel避免中文乱码

Posted on 2010-04-07 22:06  wangshijun2010  阅读(458)  评论(0)    收藏  举报
<?php
/* Customer Model parent class */
class AppModel extends Model {
    public $actsAs = array('Containable');
    public function beforeFind(){
        $this->query('set names utf8');
    }
    public function beforeSave(){
        $this->query('set names utf8');
        return true;
    }
}
?>

博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3