/** * Matricula De estudiantes */ public function matricular() { try { $idPersona = isset($_POST['idPersona']) ? $_POST['idPersona'] : NULL; $idSalon = isset($_POST['idSalon']) ? $_POST['idSalon'] : NULL; $jornada = isset($_POST['jornada']) ? $_POST['jornada'] : NULL; $foto = isset($_POST['foto']) ? $_POST['foto'] : NULL; if ($foto != "") { $foto = $this->limpia_espacios($foto); $contents = file_get_contents($foto); $savefile = fopen('utiles/imagenes/fotos/' . $idPersona . '.png', 'w'); fwrite($savefile, $contents); fclose($savefile); } $fecha = getdate(); $FechaTxt = $fecha["year"] . "-" . $fecha["mon"] . "-" . $fecha["mday"]; if ($fecha["month"] == 'December' or $fecha["month"] == 'November' or $fecha["month"] == 'October') { $año = $fecha["year"]; $añoLectivo = $año + 1; } else { $añoLectivo = $fecha["year"]; } $mat = new Matricula(); $mat->setIdPersona($idPersona); $mat->setIdSalon($idSalon); $mat->setJornada($jornada); $mat->setFecha($FechaTxt); $mat->setAnoLectivo(strval($añoLectivo)); $mat->matricularEstudiante($mat); echo json_encode("1"); } catch (Exception $exc) { echo json_encode('Error de aplicacion: ' . $exc->getMessage()); } }