


Yii prefers specification over configuration. Following the specification allows you to create mature Yii applications without writing and maintaining complex configurations. Of course, Yii can still be customized in almost every aspect through configuration if necessary.
Below we explain the recommended development specifications in Yii programming. For simplicity, let's assume that WebRoot is the directory where the Yii application is installed.
1. URL
By default, Yii recognizes URLs in the following format:
http://www.php.cn/
r
The GET variable means route, which Can be parsed by Yii into controllers and actions. If ActionID
is omitted, the controller will use the default action (defined in CController::defaultAction); if ControllerID
is also omitted (or the r
variable is not exists), the application will use the default controller (defined in CWebApplication::defaultController).
With the help of CUrlManager, you can create a more identifiable and SEO-friendly URL, such as http://www.php.cn/
. This feature is explained in detail in URL Management.
2. Code
Yii recommends using camel case style when naming variables, functions and classes, that is, the first letter of each word is capitalized and connected together, with no spaces in between. Variable and function names should have their first word lowercase to distinguish them from class names (for example: $basePath
, runController()
,LinkPager
). For private class member variables, we recommend prefixing their names with an underscore (for example: $_actionList
).
Since namespaces are not supported before PHP 5.3.0, we recommend that classes be named in some independent way to avoid conflicts with third-party classes. For this reason, all Yii framework class names are prefixed with "C".
A special rule for controller names is that they must end with the word Controller
. Then the controller ID is the first letter of the class name in lowercase and removes the word Controller
. For example, the ID of the PageController
class is page
. This rule makes the application more secure. It also makes controller-related URLs simpler (e.g. /index.php?r=page/index
instead of /index.php?r=PageController/index
).
3. Configuration
Configuration is an array of key-value pairs. Each key represents a property name in the configured object, and each value is the initial value of the corresponding property. For example, array('name'=>'My application', 'basePath'=>'./protected')
initializes name
and basePath
Properties are their corresponding array values.
Any writable property in the class can be configured. If not configured, properties will use their default values. When configuring a property, it's a good idea to read the documentation to ensure the initial values are correct.
4. Files
The conventions for naming and using files depend on their type.
Class files should be named after the public classes they contain. For example, the CController class is located in the CController.php
file. A public class is a class that can be used by any other class. Each class file should contain at most one public class. Private classes (classes that can only be used by one public class) can be placed in the same file as the public class that uses them.
View files should be named after the view. For example, the index
view is located in the index.php
file. A view file is a PHP script file that contains the HTML and PHP code used to render content.
The configuration file can be named arbitrarily. A configuration file is a PHP script whose main purpose is to return an associative array that embodies the configuration.
5. Directory
Yii assumes a series of default directories for different situations. Each directory can be customized if needed.
WebRoot/protected
: This is the application base directory, where all security-sensitive PHP scripts and data files are placed. Yii has a defaultapplication
alias pointing to this directory. This directory and the files in it should be protected from access by web users. It can be customized via CWebApplication::basePath.WebRoot/protected/runtime
: This directory contains private temporary files generated when the application is running. This directory must be writable by the web server process. It can be customized via CApplication::runtimePath.WebRoot/protected/extensions
: This directory places all third-party extensions. It can be customized via CApplication::extensionPath.WebRoot/protected/modules
: This directory places all application modules, and each module uses a subdirectory.WebRoot/protected/controllers
: This directory places all controller class files. It can be customized via CWebApplication::controllerPath.WebRoot/protected/views
: This directory contains all view files, including controller views, layout views and system views. It can be customized via CWebApplication::viewPath.WebRoot/protected/views/ControllerID
: This directory places the view files used in a single controller class.ControllerID
here refers to the ID of the controller. It can be customized via CController::viewPath.WebRoot/protected/views/layouts
: This directory places all layout view files. It can be customized via CWebApplication::layoutPath.WebRoot/protected/views/system
: This directory contains all system view files. System view files are templates used to display exceptions and errors. It can be customized via CWebApplication::systemViewPath.WebRoot/assets
: This directory places public resource files. Resource files are private files that can be published and accessed by web users. This directory must be writable by the web server process. It can be customized through CAssetManager::basePathWebRoot/themes
: This directory places different themes used by the application. Each subdirectory is a topic, and the name of the topic is the name of the directory. It can be customized via CThemeManager::basePath.
6. Database
Most web applications are driven by databases. For optimal time, we recommend using the following naming convention when naming tables and columns. Note that these specifications are not required for Yii.
Database table names and column names are named in lowercase.
Words in the name should be separated by underscores (e.g.
product_order
).For table names, you can use either the singular or the plural. But don't use both at the same time. For simplicity, we recommend using singular names.
Table names can use a common prefix, such as
tbl_
. This is particularly useful when the table used by an application coexists in the same database as a table used by another application. The tables of these two applications can be easily distinguished by using different table prefixes.
The above is the content of Yii Framework Official Guide Series 13 - Basic Knowledge: Development Specifications. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

随着互联网的普及以及人们对电影的热爱,电影网站成为了一个受欢迎的网站类型。在创建一个电影网站时,一个好的框架是非常必要的。Yii框架是一个高性能的PHP框架,易于使用且具有出色的性能。在本文中,我们将探讨如何使用Yii框架创建一个电影网站。安装Yii框架在使用Yii框架之前,需要先安装框架。安装Yii框架非常简单,只需要在终端执行以下命令:composer

Yii框架是一个高性能、高扩展性、高可维护性的PHP开发框架,在开发Web应用程序时具有很高的效率和可靠性。Yii框架的主要优点在于其独特的特性和开发方法,同时还集成了许多实用的工具和功能。Yii框架的核心概念MVC模式Yii采用了MVC(Model-View-Controller)模式,是一种将应用程序分为三个独立部分的模式,即业务逻辑处理模型、用户界面呈

Yii框架是一个高性能、可扩展、安全的PHP框架。它是一个优秀的开发工具,能够让开发者快速高效地构建复杂的Web应用程序。以下是几个原因,让Yii框架比其他框架更好用。高性能Yii框架使用了一些先进的技术,例如,延迟加载(lazyloading)和自动加载机制(automaticclassloading),这使得Yii框架的性能高于许多其他框架。它还提

随着互联网的快速发展,应用程序对于处理大量并发请求和任务变得越来越重要。在这样的情况下,处理异步任务是必不可少的,因为这可以使应用程序更加高效,并更好地响应用户请求。Yii框架提供了一个方便的队列组件,使得处理异步操作更加容易和高效。在本篇文章中,我们将探讨Yii框架中队列的使用和优势。什么是队列队列是一种数据结构,用于处理数据的先进先出(FIFO)顺序。队

ViewState是ASP.NET中的一种机制,用于保护页面的隐私数据。而在Yii框架中,ViewState同样也是实现页面数据保护的重要手段。在Web开发中,随着用户界面操作的复杂度增加,前端与后端之间的数据传输也愈发频繁。但是,不可避免的会有恶意用户通过网络抓包等手段截获数据。而未加保护的数据可能含有用户隐私、订单信息、财务数据等重要资料。因此,加密传输

Yii是一款优秀的PHP框架,它提供了很多丰富的功能和组件来加快Web应用程序的开发。其中一个非常重要的特性就是可以方便地使用外部库进行扩展。Yii框架中的扩展可以帮助我们快速完成许多常见的任务,例如操作数据库、缓存数据、发送邮件、验证表单等等。但是有时候,我们需要使用一些其他的PHP类库来完成特定的任务,例如调用第三方API、处理图片、生成PDF文件等等。

在现今互联网时代,数据的处理和展示对于各种应用而言都是至关重要的。对于一些数据量较大的网站,其展示效果直接影响用户体验,而优秀的分页机制可以使得数据展示更加清晰,提高用户的使用体验。在本文中,我们将介绍Yii框架中的分页机制,并探讨如何通过优化分页机制来改进数据展示效果。Yii框架是一种基于PHP语言的高性能、适用于Web应用的开发框架。它提供

Yii框架是一款快速、高效、安全的PHP开发框架,依托于丰富的工具和组件,Yii框架可以帮助开发者更轻松地构建高质量的Web应用程序。其中,ORM(对象关系映射)是Yii框架其中之一的特点。这篇文章将简单介绍Yii框架中的ORM,并说明其如何简化数据库操作。一、什么是ORMORM是指对象关系映射,它将面向对象的编程语言中的对象与关系型数据库中的表进行映射,使


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
