添加数据
优质
小牛编辑
124浏览
2023-12-01
方法原型:public function add($data);
参数名称 | 数据类型 | 参数说明 |
---|---|---|
$data | array | 数据模型 |
return | int | 操作成功,返回插入的id,插入失败则返回false |
栗子
$model = Loader::model(UserDao::class);
$data = array(
'username' => 'xiaoming',
'password' => '123456',
'address' => 'China'
);
$id = $model->add($data);
替换数据
方法原型 : public function replace($data);
参数名称 | 数据类型 | 参数说明 |
---|---|---|
$data | array | 数据模型, $data中需要包含主键$data['id'],否则替换不成功 |
return | bool | 成功返回true,失败返回false |
栗子
$model = Loader::model(UserDao::class);
$data = array(
'id' => 1
'username' => 'xiaoming',
'password' => '123456',
'address' => 'China'
);
$result = $model->replace($data);
var_dump($result);