Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果 symfony1.4 及其形式,我在前/表单/后验证方面存在问题。我想用当前日期验证一个字段。由于它是当前日期,我不必明确提供它。
我能怎么做?
正确的方法是将当前日期从操作传递到表单作为选项,然后从表单传递到验证器作为选项。
$form->addOption("name","value"); $this->validatorSchema['field']=new myValidator(array('option1'=>'value);
在我们的例子中,上面的选项应该是当前日期。