Advertisement
christiansalazarh

convertir fecha

Aug 18th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1.  <?php
  2.  class Prueba extends CActiveRecord
  3.  {
  4.   public $fechaString;
  5.   public function rules()
  6.   {
  7.    return array(
  8.     array('fechaString','convertir_fecha'),  // <---AQUI
  9.     array('fecha, fechaString', 'required'),  // <--- AQUI
  10.     array('fechaString', 'length', 'max'=>20),  // <--- Y AQUI
  11.     array('idprueba, fecha', 'safe', 'on'=>'search'),
  12.    );
  13.   }
  14.  
  15.    public function convertir_fecha($attr, $params){
  16.    $this->fecha = CDateTimeParser::parse($this->fechaString,'dd/MM/yyyy');
  17.    if($this->fecha == null)
  18.     $this->addError('fecha','La fecha es requerida.');
  19.   }
  20.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement