當前位置: 首頁>>代碼示例>>PHP>>正文


PHP v::clearError方法代碼示例

本文整理匯總了PHP中v::clearError方法的典型用法代碼示例。如果您正苦於以下問題:PHP v::clearError方法的具體用法?PHP v::clearError怎麽用?PHP v::clearError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在v的用法示例。


在下文中一共展示了v::clearError方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getForm

 public function getForm()
 {
     if (f::isEmpty(v::getError())) {
         $codPermiso = f::request('post', 'decode', f::id('codPermiso'));
         v::valida($codPermiso, 'codPermiso', 'required,maxSize[11]');
     }
     if (!f::isEmpty(v::getError())) {
         $codPermiso = 0;
         v::clearError();
     }
     $table = DAO_Permiso::getForm($codPermiso);
     if (f::isEmpty($table)) {
         $table[0]['codPermiso'] = null;
         $table[0]['estado'] = null;
         $table[0]['descripcion'] = null;
         $table[0]['fechaSolicitud'] = null;
         $table[0]['motivo'] = null;
         $table[0]['direccion'] = null;
         $table[0]['numeroDias'] = null;
         $table[0]['fechaInicio'] = null;
         $table[0]['fechaFin'] = null;
         $table[0]['codPersonal'] = null;
         $table[0]['nombres'] = null;
         $table[0]['apellidoPat'] = null;
         $table[0]['apellidoMat'] = null;
         $table[0]['dni'] = null;
         $table[0]['edad'] = null;
         $table[0]['tipoSangre'] = null;
         $table[0]['grado'] = null;
         $table[0]['codCIP'] = null;
     }
     return $table;
 }
開發者ID:eddyn73,項目名稱:SURP,代碼行數:33,代碼來源:BL_Permiso.php

示例2: getForm

 public function getForm()
 {
     if (f::isEmpty(v::getError())) {
         $codEvacuacion = f::request('post', 'decode', f::id('codEvacuacion'));
         v::valida($codEvacuacion, 'codEvacuacion', 'required,maxSize[11]');
     }
     if (!f::isEmpty(v::getError())) {
         $codEvacuacion = 0;
         v::clearError();
     }
     $table = DAO_Evacuacion::getForm($codEvacuacion);
     if (f::isEmpty($table)) {
         $table[0]['codEvacuacion'] = null;
         $table[0]['fecha'] = null;
         $table[0]['estado'] = null;
         $table[0]['fechaInicio'] = null;
         $table[0]['fechaFin'] = null;
         $table[0]['motivo'] = null;
         $table[0]['observaciones'] = null;
         $table[0]['codPersonal'] = null;
         $table[0]['codTipoEvacuacion'] = null;
         $table[0]['codMedioEvacuacion'] = null;
         $table[0]['codPersonalAcompaniante'] = null;
         $table[0]['codCIP'] = null;
         $table[0]['grado'] = null;
         $table[0]['nombres'] = null;
         $table[0]['apellidoPat'] = null;
         $table[0]['apellidoMat'] = null;
         $table[0]['nombresAcompaniante'] = null;
         $table[0]['apellidoPatAcompaniante'] = null;
         $table[0]['apellidoMatAcompaniante'] = null;
         $table[0]['medioEvacuacion'] = null;
         $table[0]['lugarOrigen'] = null;
         $table[0]['lugarDestino'] = null;
         $table[0]['dni'] = null;
         $table[0]['edad'] = null;
         $table[0]['tipoSangre'] = null;
     }
     return $table;
 }
開發者ID:eddyn73,項目名稱:SURP,代碼行數:40,代碼來源:BL_Evacuacion.php

示例3: validaKeyPublico

 private function validaKeyPublico()
 {
     $keyPublico = f::request('post', 'normal', 'l' . f::encode('Base64KeyPublico', false));
     if (!f::isEmpty($keyPublico)) {
         if (f::llaveMaestra($keyPublico) === false) {
             foreach ($_SESSION as $k => $v) {
                 unset($_SESSION[$k]);
             }
             $message = 'Caducó la credencial de la aplicación, cargue otra vez esta página';
             if (f::request('post', 'decode', f::id('typeResponse')) == 'json') {
                 v::setFalseJSON();
                 v::setJSON('tag', 'body, form');
                 v::setJSON('refrescar', true);
                 v::setJSON('descripcion', $message);
                 v::printJSON();
             } else {
                 v::clearError();
                 v::setError($message);
                 v::printUL();
             }
             die;
         }
     }
 }
開發者ID:eddyn73,項目名稱:SURP,代碼行數:24,代碼來源:FrontController.php


注:本文中的v::clearError方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。