<?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;
}
}
?>
浙公网安备 33010602011771号