加载中
Symfony 防火墙详解

关于Symfony防火墙(symfony/security-bundle)介绍,如有需要,我将会整理成文档记录在博文中。 foreverglory/oauth-bundle 基于防火墙编写的第三方登录模块...

2016/06/23 06:35
395
Symfony Service 详解

默认Service,$container->get('app_service.default') services: app_service.default: class: AppBundle\Service\DefaultService 传递参数,可传递服务、变量、字符串、数组,...

2016/06/22 05:17
343
Symfony启动顺序

Kernel->initializeBundles() 初始化Bundle Kernel->registerBundle() 注册Bundle Kernel->bundleMap 生成Bundle关系图 Kernel->initializeContainer() 初始化容器(缓存) Kernel->buildCon...

2016/06/21 15:33
337
doctrine 事件

事件介绍 use Doctrine\ORM\Events; Events::preRemove Events::postRemove Events::prePersist Events::postPersist Events::preUpdate Events::postUpdate Events::postLoad Events::load...

2016/06/21 15:29
422
doctrine 关系

OneToOne OneToMany ManyToOne use Doctrine\ORM\Mapping as ORM; /** * User * @ORM\Entity * @ORM\Table */ class User { /** * 一个用户对应一个资料 * @OneToOne(tar...

2016/06/21 15:07
309
doctrine Entity 继承、重写

创建通用类 "MappedSuperclass" use Doctrine\ORM\Mapping as ORM; /** * Content * * @ORM\MappedSuperclass */ class Content { /** * @ORM\Id */ protected $id; ...

2016/06/21 14:36
231

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部