symfony学习过程

创建bundle

  app/consle generate:bundle

symfony学习过程_第1张图片

symfony学习过程_第2张图片

在配置文件里面编辑好需要创建的数据库,然后再执行下面的代码创建好数据库

  php app/console doctrine:database:create 

当在public里面添加了image/css/js文件过后,需要执行下面命令让文件能被访问

  php app/console assets:install web --symlink  

引入模板文件

  {% include '@BlogWeb/head.html.twig' %}

引入配置文件

  {{ asset('bundles/blogweb/images/01.jpg') }}

页面跳转

  {{ asset('路由') }}

你可能感兴趣的:(学习)