public function del_row() { try { $excel = new Excel(); $excel->set_maxrow($excel->get_maxrow() - 1); $result = array('status' => 'OK', 'msg' => $excel->get_maxrow()); echo json_encode($result); } catch (Exception $ex) { $result = array('status' => 'ERROR', 'msg' => $ex->getMessage()); echo json_encode($result); } }