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.
我们可以指定用户无法修改的配置文件字段吗?
这个想法是让用户只修改一组有限的配置文件字段。
假设您使用的是,CActiveForm您可以将字段定义为只读,如下所示:
CActiveForm
<?php echo CHtml::textField("username", $model->username, array('readonly'=>true)); ?>