Zend_Validate::is() Static Check, get validation message work around

自作多情 提交于 2019-12-20 03:15:19

问题


Does anyone know of a way to get validation messages from using Zend_Validate in static scope?

Zend_Validate::is($value, $validator[0], $validator[2])

The docs say explicitly that getting the messages isn't an option: http://framework.zend.com/manual/en/zend.validate.introduction.html#zend.validate.introduction.static

Slightly discouraging, but I was wondering if someone knew of any other methods that are inside Zend for getting messages from a validation string?

I'm following a great article about validating at the model level if anyone is interested: http://www.cambraca.com/2011/03/validation-in-zend-framework-model.html

Thanks for the help, -Seth


回答1:


I'm afraid it just cannot be done. See, the messages are attached to each Validator object - you cannot attach them to class (unless you make your own implementation of the validation logic with static message properties and static setter/getter for it and will use it instead).



来源:https://stackoverflow.com/questions/11370294/zend-validateis-static-check-get-validation-message-work-around

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!