YII2 save 和 insert 循環儲存資料,出現間隔性丢失值 (這些值是共有相同的值)
解決: // 每次儲存需要用 clone 不能使用直接用一個 執行個體化的model.
$_model = clone $timeTask;
$_model->setAttributes($save);
if ( ! $_model->save()) {
參考: http://www.yiichina.com/tutorial/106
YII2 save 和 insert 循環儲存資料,出現間隔性丢失值 (這些值是共有相同的值)
解決: // 每次儲存需要用 clone 不能使用直接用一個 執行個體化的model.
$_model = clone $timeTask;
$_model->setAttributes($save);
if ( ! $_model->save()) {
參考: http://www.yiichina.com/tutorial/106