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 模型中添加条件语句
例如:
在用户模型中,我需要检查用户是否为管理员,然后在更新信息中控制器手机号码字段将显示为必填字段,但如果用户是普通用户,则将字段属性更改为空或不需要
array('mobile','length', 'max'=>14 ,'min'=>3),
提前致谢
回声(如果(isset(admin_session)))?'为管理员编写更新代码' : '编写普通用户更新代码';