本文介绍了对 php 验证框架的推荐的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我现在在 PHP 中验证分配的字段,我必须预制基本的(字符串长度等)和更复杂的(例如带 <> 标签)

I'm validating allot of fields now in PHP, and I have to preform basic (string length ect.) and more complex (strip <> tags, for example)

谁能推荐一个可以做到这一点的类,或者一个框架,或者一些做这些事情的函数?

Can anyone recommend a class that does this, or maybe a framework, or maybe some functions that do these things?

推荐答案

我假设您正在验证已发布的表单:使用 Zend_FormZend_Filter

I assume you're validating POSTed forms: use Zend_Form and Zend_Filter

这篇关于对 php 验证框架的推荐的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!