Insert Doctrine - PHP
Get the "entity manager":
$em = $this->getDoctrine()->getEntityManager();
Set values:
$user = new user();
$user->setName('Isaac');
$user->setAge(25);
Save:
$em->persist($user);
$em->flush();
Written by Isaac Limon G.
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#