當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Post::setUpdatedOn方法代碼示例

本文整理匯總了PHP中AppBundle\Entity\Post::setUpdatedOn方法的典型用法代碼示例。如果您正苦於以下問題:PHP Post::setUpdatedOn方法的具體用法?PHP Post::setUpdatedOn怎麽用?PHP Post::setUpdatedOn使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在AppBundle\Entity\Post的用法示例。


在下文中一共展示了Post::setUpdatedOn方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: load

 /**
  * {@inheritDoc}
  */
 public function load(ObjectManager $manager)
 {
     $post = new Post();
     $post->setTitle('Man must explore, and this is exploration at its greatest');
     $post->setDescription('Never in all their history have men been able truly to conceive of 
                             the world as one: a single sphere, a globe, having the qualities of 
                             a globe, a round earth in which all the directions eventually meet, 
                             in which there is no center because every point, or none, is center — 
                             an equal earth which all men occupy as equals. The airman\'s earth, if
                             free men make it, will be truly round: a globe in practice, not in theory.');
     $post->setUser($manager->merge($this->getReference('super_admin_user')));
     $post->setIsActive(1);
     $post->setCreatedOn(new \DateTime());
     $post->setUpdatedOn(new \DateTime());
     $post1 = new Post();
     $post1->setTitle('New in Symfony 2.6: Bootstrap form theme');
     $post1->setDescription('Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing 
                             responsive, mobile first projects on the web. Bootstrap is so widely used that it 
                             has become the de facto standard for frontend development. That\'s why Symfony 2.6 
                             will include a new form theme designed for Bootstrap 3.');
     $post1->setUser($manager->merge($this->getReference('super_admin_user')));
     $post1->setIsActive(1);
     $post1->setCreatedOn(new \DateTime());
     $post1->setUpdatedOn(new \DateTime());
     $post2 = new Post();
     $post2->setTitle('Symfony Doctine data fixtures');
     $post2->setDescription('Fixtures are used to load a controlled set of data into a database. This data 
                             can be used for testing or could be the initial data required for the application
                             to run smoothly. Symfony2 has no built in way to manage fixtures but Doctrine2 has 
                              a library to help you write fixtures for the Doctrine ORM or ODM.');
     $post2->setUser($manager->merge($this->getReference('super_admin_user')));
     $post2->setIsActive(1);
     $post2->setCreatedOn(new \DateTime());
     $post2->setUpdatedOn(new \DateTime());
     $manager->persist($post);
     $manager->persist($post1);
     $manager->persist($post2);
     $manager->flush();
 }
開發者ID:anilchauhan-cuelogic,項目名稱:Blog-app,代碼行數:42,代碼來源:LoadPostData.php


注:本文中的AppBundle\Entity\Post::setUpdatedOn方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。