Zend Framework 2 запрос на обновление объекта TableGateway
public function update($table, $where = array(), $data_arr = array()){
print_r($data_arr);
$adapter = $this->tableGateway->getAdapter();
$projectTable;
if($table != null){
$projectTable = new TableGateway($table, $adapter);
}else{
$projectTable = new TableGateway('account_master', $adapter);
}
echo "158";
try {
echo "123";
$rowset = $projectTable->update(function(Update $update) use ($where, $data_arr) {
$update->set(array('statement_no' => '01010'));
$update->where($where);
echo $update->getSqlString();
});
} catch (\Exception $e) {
print_r($e);
}
print_r($rowset);
die();
}
мой вывод вывода: 158123 это дает мне массив передачи в функции set(), который я уже передал в качестве аргумента. Также я пытался преобразовать объект в массив ((arrya)$objetc), но это не работает для меня.
[10-Jul-2017 05:11:34 America/Denver] PHP Catchable fatal error: Argument 1 passed to Zend\Db\Sql\Update::set() must be of the type array, object given, called in /home2/flywing1/vendor/zendframework/zend-db/src/TableGateway/AbstractTableGateway.php on line 336 and defined in /home2/flywing1/vendor/zendframework/zend-db/src/Sql/Update.php on line 93
2 ответа
Попробуйте, у меня были те же проблемы, я пытался с этим, и это сработало.
$rowset = $projectTable->update(array('statement_no' => '01010'), $where);
Вы можете сделать это путем реализации Zend\Db\Sql\Update
объект. Вы можете создать этот объект, используя TableGateway
, Вы должны быть в состоянии сделать следующее в вашей модели
public function update($set, $where)
{
// Here is the catch
$update = $this->tableGateway->getSql()->update();
$update->set($set);
$update->where($where);
// Execute the query
return $this->tableGateway->updateWith($update);
}