thinkphp3.2 create()
Posted jiafeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp3.2 create()相关的知识,希望对你有一定的参考价值。
* create作用
* 1.将表单元素中的值和数据库字段意义匹配
* 2.将数据库中没有的字段在数组中去除
if(IS_POST){ $goods=M(‘goods‘); if ($data=$goods->create()) { $data[‘goods_create_time‘]=time(); if ($goods->add($data)) { $this->success(‘添加成功‘,U(‘showlist‘),3); }else{ $this->error(‘添加失败‘); } } }
以上是关于thinkphp3.2 create()的主要内容,如果未能解决你的问题,请参考以下文章