> 原文出处:https://taylorr.gitbooks.io/building-a-web-site-with-symfony
> 作者:[TR@SOE](mailto:taylor.ren@gmail.com)
# Introduction 引言
This book is written in Chinese for Chinese PHP programmers (entry to intermediate level[1]()).
> 1. This means he/she at least has a basic knowledge in Linux and PHP programming. 这意味着他/她具有Linux和PHP编程的基础知识。
本书以中文写成,面向中文PHP程序员(初级到中级水平)。
After reading through this book, the readers shall have a better understanding in the following areas:
阅读完此书后,读者应该对如下的领域有一个更好的理解:
* MVC structure of a typical web application
* 一个典型的Web应用所使用的MVC结构
* Symfony 3 installation, bootstrapping
* Symfony 3安装和自举式配置
* Important concepts and terminologies in Symfony 3
* Symfony 3中重要的概念和术语
* Controller, Routes, Entity, Repository, Templates
* 控制器,路由,实体,仓库,模板
* Bundle
* 包
We will build from scratch a personal book collection site to learn Symfony 3 framework. This site will have the following features:
我们将学习Symfony 3框架来从头建立一个个人书籍收藏站点。这个站点将有如下特性:
* A secured backend to CRUD a book entry and other related operations.
* 一个安全的后台来CRUD一本书籍和其它相关操作。
* A frontend to display book collections, and other related operations.
* 一个前台来显示书籍收藏和其它相关操作。
The full code repository can be found [here](https://github.com/taylorren/rsywx_tutorial).
本教程所有代码可以在[这里](https://github.com/taylorren/rsywx_tutorial)下载。
Let's get started!
让我们开始吧!
(All other contents in this book will be written in Chinese.)
(本书其它内容将均以中文写成。)
[TR@SOE](mailto:taylor.ren@gmail.com)
2015.1.21 Updated: 2016.3.17
- 引言
- 1 LAMP
- 1.1 安装虚拟机
- 1.2 安装Vagrant
- 1.3 安装Ubuntu
- 1.4 安装Apache 2
- 1.5 安装PHP
- 1.6 安装MySQL服务器
- 1.7 最后的微调
- 1.8 设置一个虚拟主机
- 1.9 一个趁手的IDE
- 2 Symfony 3和重要构件
- 2.1 Symfony 3
- 2.2 Doctrine
- 2.3 Twig
- 2.4 Composer
- 3 Symfony重要概念
- 3.1 MVC
- 3.2 Bundle/包
- 3.3 Route/路由
- 3.4 Controller/控制器
- 3.5 Entity/实体
- 3.6 Repository/仓库
- 3.7 Template/模板
- 3.8 Test/测试
- 4 藏书管理程序的结构
- 5 创建应用
- 5.1 建立版本管理
- 5.2 建立数据库
- 5.3 应用结构
- 5.4 建立数据库实体
- 5.5 样本数据
- 5.6 路由
- 5.7 模板
- 5.8 开始编写首页
- 5.9 书籍详情页面
- 5.10 书籍列表页面
- 5.11 书籍搜索
- 6 用户和后台
- 7 结语