PHP şimdi bazı doğrulama yapıyorum ve ben örneğin, koşullu ifadeleri tahsis koşuyorum:
if ($this->email->isValid($email))
return false;
if ($this->username->isValid($username))
return false;
vb ..
Is there a nice way to do this? Or do I just run ten If statements like the ones above?
I can't use switch
obviously, but I'm looking for that type of solution..
P.S. .. Ben doğrulama için Zend Framework kullanarak ediyorum