Esempio n. 1
0
 public function destroy($log_id)
 {
     if (ActionLog::destroy($log_id)) {
         return array('result' => true, 'content' => '删除成功');
     } else {
         return array('result' => false, 'content' => '删除失败');
     }
 }