先生No |
文件夹名称和说明 |
1 |
Sr.No |
Folder Name & Description |
1 |
bin
The bin folder holds the Cake console executables.
|
2 |
config
The config folder holds the (few) configuration files CakePHP uses. Database connection details, bootstrapping, core configuration files and more should be stored here.
|
3 |
logs
The logs folder normally contains your log files, depending on your log configuration.
|
4 |
plugins
The plugins folder is where the Plugins of your application uses are stored.
|
5 |
resources
The files for internationalization in the respective locale folder will be stored here. E.g. locales/en_US.
|
6 |
src
The src folder will be where you work your magic. It is where your application’s files will be placed and you will do most of your application development. Let’s look a little closer at the folders inside src.
Console − Contains the console commands and console tasks for your application.
Controller − Contains your application’s controllers and their components.
Model − Contains your application’s tables, entities and behaviors.
View Presentational classes are placed here: cells, helpers, and template files.
|
7 |
templates
Template Presentational files are placed here: elements, error pages, layouts, and view template files.
|
8 |
tests
The tests folder will be where you put the test cases for your application.
|
9 |
tmp
The tmp folder is where CakePHP stores temporary data. The actual data it stores depends on how you have CakePHP configured, but this folder is usually used to store model descriptions and sometimes session information.
|
10 |
vendor
The vendor folder is where CakePHP and other application dependencies will be installed. Make a personal commitment not to edit files in this folder. We can’t help you, if you’ve modified the core.
|
11 |
webroot
The webroot directory is the public document root of your application. It contains all the files you want to be publically reachable.
|
bin
bin 文件夹包含 Cake 控制台可执行文件。 |
2 |
配置
config 文件夹包含 CakePHP 使用的(几个)配置文件。数据库连接详细信息、引导、核心配置文件等应存储在此处。 |
3 |
日志
logs 文件夹通常包含您的日志文件,具体取决于您的日志配置。 |
4 |
插件
plugins 文件夹是存储应用程序使用的插件的位置。 |
5 |
资源
各个语言环境文件夹中的国际化文件将存储在此处。例如。 locales/en_US。 |
6 |
src
src 文件夹将是您施展魔法的地方。您的应用程序文件将放置在此处,您将完成大部分应用程序开发。让我们仔细看看 src 中的文件夹。
- 控制台 - 包含应用程序的控制台命令和控制台任务。
- 控制器 - 包含应用程序的控制器及其组件。
- 模型 - 包含应用程序的表、实体和行为。
- 视图展示类放置在这里:单元格、助手和模板文件。
|
7 |
模板
模板展示文件放置在这里:元素、错误页面、布局和视图模板文件。 |
8 |
测试
tests 文件夹将是您放置应用程序测试用例的位置。 |
9 |
tmp
tmp文件夹是CakePHP存储临时数据的地方。它存储的实际数据取决于您如何配置 CakePHP,但此文件夹通常用于存储模型描述,有时还用于存储会话信息。 |
10 |
供应商
vendor 文件夹是 CakePHP 和其他应用程序依赖项的安装位置。做出个人承诺不编辑此文件夹中的文件。如果您修改了核心,我们无法帮助您。 |
11 |
webroot
webroot 目录是应用程序的公共文档根目录。它包含您希望公开访问的所有文件。 |
表>
命名约定
命名约定不是必须遵循的规则,而是一种良好的编码实践,并且随着您的项目规模的扩大将非常有帮助。
控制器约定
控制器类名必须是复数形式,PascalCased,并且名称必须以 Controller 结尾。例如,对于 Students 类,控制器的名称可以是 StudentsController。控制器上的公共方法通常公开为可通过网络浏览器访问的“操作”。
例如, /users /view 映射到 UsersController 的 view() 方法。无法通过路由访问受保护或私有方法。
文件和类名称约定
大多数情况下,我们看到我们的类名文件名几乎相同。这与 cakephp 中的类似。
例如,StudentsController 类的文件名为 StudentsController.php。文件必须以模块名称保存在应用程序文件夹中的相应文件夹中。
数据库约定
CakePHP 模型使用的表,名称大多为复数且带下划线。
例如,学生详细信息、学生分数。如果字段名称由两个单词组成,则带有下划线,例如,first_name、last_name。
模型约定
对于模型,类按照数据库表命名,名称为复数、PascalCased 并以 Table 为后缀。
例如,StudentDetailsTable、StudentMarksTable
查看约定
对于视图模板,文件基于控制器功能。
例如,如果类 StudentDetailsController 有 showAll() 函数,则视图模板将命名为 show_all.php 并保存在 template/yrmodule/show_all.php 中。