INSERT/UPDATE // вставить новую строку данных $customer = new Customer(); $customer->name = 'James'; $customer->email = 'james@example.com'; $customer->save(); // обновить имеющуюся строку данных $customer = Customer::findOne(123); $customer->email = 'james@newexample.com'; $customer->save(); Внутри модели легко понять разницу: public function save($runValidation = true, $attributeNames = null) { if ($this->getIsNewRecord()) { return $this->insert($runValidation, $attributeNames); } else { return $this->update($runValidation, $attributeNames) !== false; } } Массовое присваивание $values = [ 'name' => 'James', 'email' => 'james@example.com', ]; $customer = new Customer(); $customer->attributes = $values; $customer->save();
Yii Справочник v0.05 © 2007-2024 Igor Salnikov aka SunDoctor