mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-19 13:44:52 +08:00
50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
|
|
namespace ZM\DB;
|
|
|
|
|
|
use ZM\Exception\DbException;
|
|
|
|
class UpdateBody
|
|
{
|
|
use WhereBody;
|
|
|
|
/**
|
|
* @var Table
|
|
*/
|
|
private $table;
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $set_value;
|
|
/**
|
|
* UpdateBody constructor.
|
|
* @param Table $table
|
|
* @param array $set_value
|
|
*/
|
|
public function __construct(Table $table, array $set_value) {
|
|
$this->table = $table;
|
|
$this->set_value = $set_value;
|
|
}
|
|
|
|
/**
|
|
* @throws DbException
|
|
*/
|
|
public function save(){
|
|
$arr = [];
|
|
$msg = [];
|
|
foreach($this->set_value as $k => $v) {
|
|
$msg []= $k .' = ?';
|
|
$arr[]=$v;
|
|
}
|
|
if(($msg ?? []) == []) throw new DbException('update value sets can not be empty!');
|
|
$line = 'UPDATE '.$this->table->getTableName().' SET '.implode(', ', $msg);
|
|
if($this->where_thing != []) {
|
|
list($sql, $param) = $this->getWhereSQL();
|
|
$arr = array_merge($arr, $param);
|
|
$line .= ' WHERE '.$sql;
|
|
}
|
|
return DB::rawQuery($line, $arr);
|
|
}
|
|
} |