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.
Yiiモデルに条件文を追加することは可能ですか?
eaxmpleの場合:
ユーザーモデルでは、ユーザーが管理者であるかどうかを確認する必要があります。その後、情報を更新します。コントローラーの携帯電話番号フィールドは必要に応じて表示されますが、ユーザーが通常のユーザーの場合は、フィールドのプロパティを空または不要に変更します。
array('mobile','length', 'max'=>14 ,'min'=>3),
前もって感謝します
echo (if(isset(admin_session))) ? '管理者用の更新コードを書く': '通常のユーザー更新コードを書く';