概要 † Piece_Right は Piece Framework のバリデーションの部分を担当しているライブラリです。 この Piece_Right を Zend Framework に組み込み、 以下のような YAML 形式の設定ファイルに基づいて、 バリデーションを一括して行えるようにします。 - name: userid description: ユーザーID required: message: %_description%を入力して下さい。 validator: - name: Length rule: min: 4 max: 8 message: %_description%は4文字以上8文字以下です。 - name: password description: パスワード …… Zend_Validate_Interface の API に合わせて