add: update with associative array
This commit is contained in:
parent
306f489bd9
commit
bcaf03610a
@ -29,7 +29,13 @@ class BancaDati {
|
|||||||
$data[8] = chr(ord($data[8]) & 0x3f | 0x80);
|
$data[8] = chr(ord($data[8]) & 0x3f | 0x80);
|
||||||
return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
|
return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
|
||||||
}
|
}
|
||||||
public function update(string $table, string $id, string $value){
|
public function update(string $table, string $id, array $values){
|
||||||
|
$value = "";
|
||||||
|
foreach ($values as $col => $v){
|
||||||
|
$value .= $col . "=" . $v . ",";
|
||||||
|
}
|
||||||
|
$value = trim($value, ",");
|
||||||
|
|
||||||
$sql = "UPDATE " . $table . " SET " . $value . " WHERE `id` = " . $id . ";";
|
$sql = "UPDATE " . $table . " SET " . $value . " WHERE `id` = " . $id . ";";
|
||||||
try {
|
try {
|
||||||
$sth = $this->pdo->prepare($sql);
|
$sth = $this->pdo->prepare($sql);
|
||||||
|
Loading…
Reference in New Issue
Block a user