yii2 框架的 AR 和 DAO 增删改查

自己做个总结  方便以后查找使用

/**
* yii 的增删改查
*/
//增
public function add1($data)
{
$data = [
'title'=>$data['YiiNews']['title'],
'msg'=>$data['YiiNews']['msg'],
'img'=>$data['News']['img'],
];
$this->setAttributes($data) ;
return $this->insert();
}

public function add2($data)
{
$this->setAttributes($data);
$this->isNewRecord = true;
$this->id = 0;
return $this->save(0);
}

public function add3($data)
{
$sql = "insert into yii_news (title,msg) values ('{$data['title']}','{$data['msg']}')";
return \yii::$app->db->createCommand($sql)->execute();
}

//删
public function del1($id)
{
$this->deleteAll('id = '.$id);//作死写法 不要这么写
$this->deleteAll(['id'=>$id]);
}

public function del2($id)
{
$sql = "delete from yii_news where id = '$id'";
return \yii::$app->db->createCommand($sql)->execute();
}

//改
public function save1($data)
{
return $this->updateAll($data,['id'=> 1]);
}

//查
public function sel1()
{
return $this->find()->where("title = 'title11'")->andWhere("id > 0")->asArray(true)->all();
// return $this->find()->select()->where("title = 'title11'")->orWhere("id = 9")->asArray(true)->one();
}

public function sel2()
{
$sql = "select * from yii_news ";
return \yii::$app->db->createCommand($sql)->queryAll();
}

 

更具体欢迎访问 http://www.php20.com/forum.php?mod=viewthread&tid=158&extra=page%3D1

 

转载于:https://www.cnblogs.com/zyjfire/p/6849054.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值