当前位置: 首页>>代码示例>>PHP>>正文


PHP Persona::validate方法代码示例

本文整理汇总了PHP中Persona::validate方法的典型用法代码示例。如果您正苦于以下问题:PHP Persona::validate方法的具体用法?PHP Persona::validate怎么用?PHP Persona::validate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Persona的用法示例。


在下文中一共展示了Persona::validate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: actionAjaxPersona

 public function actionAjaxPersona()
 {
     $model = new Persona();
     if (Yii::app()->request->isAjaxRequest) {
         $post = trim(file_get_contents('php://input'));
         //por ejemplo traeria: "cedula=123&nombre=aasas&apellido=aaa"
         // como lo sabemos ? simple: Yii::log("POST=".$post,"info");
         // ahora los pasamos a un array con forma key=>value
         // para que model->attributes los acepte:
         $attributes = array();
         foreach (explode("&", $post) as $item) {
             $att = explode("=", $item);
             $attributes[$att[0]] = $att[1];
         }
         // listo hemos convertido el string post a un array indexado:
         // var_export($attributes,true) mostraria:
         //  array ( 'cedula' => '123', 'nombre' => 'aasas', 'apellido' => 'aaa', )
         $model->attributes = $attributes;
         if ($model->validate()) {
             // ok todo bien, haces algo aqui con el modelo...
             // como es un ejemplo no haremos nada mas que informar.
             return;
         } else {
             // si defined('YII_DEBUG') or define('YII_DEBUG',true);
             // es TRUE por defecto, ver /index.php
             // entonces la excepcion mostrara un codigo horrible,
             // pero si la ponemos en FALSE, entonces solo mostrara
             // el errorSummary, lo cual es deseable.
             throw new Exception(CHtml::errorSummary($model));
         }
     }
 }
开发者ID:cesarmontoya770828,项目名称:ejemplos,代码行数:32,代码来源:DefaultController.php

示例2: actionCreate

 /**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     /**	$model=new FichaMedica;
     
     		// Uncomment the following line if AJAX validation is needed
     		// $this->performAjaxValidation($model);
     
     		if(isset($_POST['FichaMedica']))
     		{
     			$model->attributes=$_POST['FichaMedica'];
     			if($model->save())
     				$this->redirect(array('view','id'=>$model->idFicha_Medica));
     		}
     
     		$this->render('create',array(
     			'model'=>$model,
     		));*/
     $model1 = new FichaMedica();
     $model2 = new Persona();
     if (isset($_POST['FichaMedica'])) {
         // populate input data to $a and $b
         $model1->attributes = $_POST['FichaMedica'];
         $model2->attributes = $_POST['Persona'];
         $existe = Persona::model()->findByAttributes(array('Cedula' => $model2->Cedula));
         if ($existe == null) {
             // validate BOTH $a and $b
             $valid = $model1->validate();
             $valid = $model2->validate() && $valid;
             if ($valid) {
                 $model2->save(false);
                 $model1->idPariente = $model2->idPersona;
                 $model1->save();
             }
         } else {
             $model2 = $existe;
             $valid = $model1->validate();
             $valid = $model2->validate() && $valid;
             if ($valid) {
                 $model1->idPariente = $model2->idPersona;
                 $model1->save();
             }
         }
     }
     if (isset($_POST['FichaMedica'])) {
         $model1->attributes = $_POST['FichaMedica'];
         if ($model1->save()) {
             $this->redirect(array('view', 'id' => $model1->idFicha_Medica));
         }
     }
     $this->render('create', array('model2' => $model2, 'model1' => $model1));
 }
开发者ID:alexskull,项目名称:Ushi,代码行数:55,代码来源:FichaMedicaController.php


注:本文中的Persona::validate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。