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.
Zend フォーム検証: Identical の反対 (つまり、notIdentical) のバリデーターはありますか? 入力が「str」と同一でないことを確認するにはどうすればよいですか?
私の知る限り、NotIdentical のようなものはありません。その方法で独自のバリデーターを試しましたか?:
class My_Validate_NotIdentical extends Zend_Validate_Identical { public function isValid($value) { return !parent::isValid($value); } }
これは最も簡単な解決策です-検証メッセージなども変更する必要があります.