
symfony
查理安
这个作者很懒,什么都没留下…
展开
-
tmux
tmux**tmux**基本使用session操作窗口操作pane操作ssh设置断线自动重连tmux基本使用session操作prefix默认为ctrl+b(可修改)tmux new -s 名字 新建sessiontmux a -t 名字 重连sessiontmux ls 展示当前所有sessiontmux a 重连最近的session窗口操作prefix+c 新建窗口ctrl...原创 2019-03-31 09:42:11 · 170 阅读 · 0 评论 -
shell script
Introduction原创 2019-03-25 21:33:59 · 112 阅读 · 0 评论 -
phpstorm outline
1.Code with smart assistanceCode completionIntention actions (Alt + Enter)2.Keep your code neatinspections3.Generate some codeconstructors, getter/setter, PHPDoc commentsoverriding/implementing...原创 2019-03-31 11:37:59 · 185 阅读 · 0 评论 -
Databases and theDoctrine ORM
Install Doctrine composer require symfony/orm-pack composer require --dev symfony/maker-bundleConfigure the DatabaseCreate an Entity ClassMigrations: Create the Database Tables/SchemaMigrations...原创 2019-03-31 17:06:54 · 178 阅读 · 0 评论 -
Service Container
1. Fetch and use Servicestype-hint an argument with the service’s class or interface namefull list (debug:container)2. Create/Configure services in the containernamespace App\Serviceautomatic ...转载 2019-04-02 08:55:37 · 556 阅读 · 0 评论 -
Events and Event Listeners
1. Create an Event ListenerThe most common way to listen to an event is to register an event listener// src/EventListener/ExceptionListener.phpnamespace App\EventListener;use Symfony\Component\...转载 2019-04-02 21:52:00 · 178 阅读 · 0 评论