我无法在控制器中保留多个实体。我只能保存最后一个。
我的代码:
$product = new Product();
$names = ['yellow', 'blue', 'red']; // save these to the table
foreach ($name as $name) {
$product->setName($name);
$em->persist($product);
// $em->flush(); // doesn't work either
}
$em->flush();
Run Code Online (Sandbox Code Playgroud)
我正在使用 Symfony 2.7
git log 虽然我有超过50次提交,但只显示最后3次提交.
git log -10 仍然只显示最后3次提交.
如何增加提交限制?