<?php
class PhoneAction extends commAction {
public function update() {
if (!$this->checkLogin()) {
setcookie('key', '', time() - 3600);
$this->error('未登录', '/');
}
$phoen = M('Phone', 'sip_', 'DB_CONFIG1');
$result = $phone->create();
if (!$result) {
$this->error($phone->getError());
}
$phone->add();
}
}
?>
class commAction extends Action #commAction里面一些常用函数
最佳答案