cakePHP updateAll

use Cake\Database\Expression\QueryExpression;
...
function incrementCounters()
{
  $expression = new QueryExpression('view_count=view_count +1');
  $this->updateAll([$expression], ['published' => true]);
}

Dodaj komentarz