Symfony 2 - Duplicate an entity
That's simple, use the PHP keyword clone
on your entity !
$new_entity = clone $old_entity;
$em = $this->getDoctrine()->getManager();
$em->persist($new_entity);
$em->flush();
That's all !
Written by Morgan
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#