Example #1
0
 function act_platformDel($where)
 {
     //调用model层获取数据
     $platformModel = new platformModel();
     $list = $platformModel->platformDel($where);
     if ($list) {
         return $list;
     } else {
         return false;
     }
 }