Exemplo n.º 1
0
 public function setEmail($n)
 {
     if (!ZP::isEmail($n)) {
         $this->setError('email');
     } else {
         $this->email = $n;
     }
 }
Exemplo n.º 2
0
 public function setEmail($n)
 {
     foreach ($n as $v) {
         if (!ZP::isEmail($v)) {
             $this->setError('email');
             break;
         } else {
             $this->email = $n;
         }
     }
 }