<?phpecho min(2, 3, 1, 6, 7); // 1echo min(array(2, 4, 5)); // 2echo min(0, 'hello'); // 0echo min('hello', 0); // helloecho min('hello', -1); // -1// Read More
posted @ 2016-03-31 18:31 不解凡忧 Views(1369) Comments(0) Diggs(0) Edit
在视图层利用表单小部件生成表单时,field只能是数据库中存在的, 例如: use yii\helpers\Html; use yii\widgets\ActiveForm; use yii\captcha\Captcha; 其中,确认密码和验证码等字段我们是不需要在数据库中设计的,这时,需要在模型 Read More
posted @ 2016-03-31 13:34 不解凡忧 Views(379) Comments(0) Diggs(0) Edit