


Analysis of ThinkPHP project grouping configuration method, thinkphp project_PHP tutorial
Jul 12, 2016 am 08:56 AMAnalysis of ThinkPHP project group configuration method, thinkphp project
This article describes the ThinkPHP project group configuration method with examples. Share it with everyone for your reference, the details are as follows:
Project grouping overview
Project grouping is an important mechanism of ThinkPHP. The project grouping function can merge multiple previous projects into one project. Public files can be reused, but each group can have its own independent configuration files, public files, Language packs, etc.
Take an ordinary website as an example. If project grouping is not used, the frontend of the website (the part provided to users for browsing) is usually treated as a project. The backend management part of the website may have independent configuration files, CSS files, templates, etc., so it is managed as another project. But in fact, both projects are the content of the website, and they can share some content such as database configuration files and even some model classes and cross-project operations.
Project grouping can effectively solve the commonality and individuality issues between projects under the same system.
Project grouping configuration
Enable project grouping by performing simple project grouping configuration in the system configuration file (Config/config.php).
There are five configurations related to project grouping mode:
Configuration Options | Description | Examples or suggestions |
---|---|---|
APP_GROUP_LIST | List of all names of the project group. If not set, it means that the project grouping mode is not enabled | 'APP_GROUP_LIST'=>'Home,Admin,User,Blog', |
DEFAULT_GROUP | The default project group name, the system default is Home | 'DEFAULT_GROUP' =>'Home', |
APP_GROUP_DEPR | The separator between project groups, the default is . (dot), used for separation in A function, D function and routing configuration | Recommended default |
TMPL_FILE_DEPR | The separator between the module and the operation in the template file, the default is /, only valid for project group deployment | It is recommended to default, you can use the U method to automatically generate the URL |
VAR_GROUP | Variable to get the project group name, the default is g | index.php?g=Admin&m=Index&a=edit, it is recommended to default |
When TMPL_FILE_DEPR is configured as _, in terms of Admin group Index module add operation, the corresponding template file is changed from the original:
Tpl/default/Admin/Index/add.html
changed to:
Tpl/default/Admin/Index_add.html
Through this configuration, the template directory structure is reduced by one directory.
Tip: TMPL_FILE_DEPR is also the delimiter between the grouped language definitions and the language file in the language file.
Among the above configuration options, to enable grouping, APP_GROUP_LIST must be set, and other options must be configured according to the actual situation.
Personal configuration of project groups
If you want to add a unique personalized configuration to a grouped project, you can create a directory with the same name as the project group under the configuration directory Conf (the directory naming format is: the first letter of the group name is capitalized and the remaining letters are lowercase), And define a config.php configuration file in the directory. Such as the personalized configuration file of the Admin project:
Conf/Admin/config.php
When there is a config.php file defined in the directory of the group name, every time the group is accessed, the system will automatically load the independent configuration of the group and overwrite the settings of the same options in the public configuration.
Readers who are interested in more thinkPHP-related content can check out the special topics on this site: "ThinkPHP Getting Started Tutorial", "ThinkPHP Common Methods Summary", "Smarty Template Basic Tutorial" and "PHP Template Technology Summary".
I hope this article will be helpful to everyone’s PHP programming based on the ThinkPHP framework.
Articles you may be interested in:
- Nginx configuration supports ThinkPHP’s PATH_INFO
- Configuration examples to support Thinkphp URL Rewrite under Nginx
- THINKPHP supports YAML configuration File setting method
- thinkPHP study notes installation and configuration
- thinkphp configuration and connection database skills
- thinkphp URL routing rules and configuration examples
- ThinkPHP public Methods of combining configuration files with configuration files in respective projects
- Mapping analysis of public function paths and configuration item paths in ThinkPHP
- Detailed explanation of ThinkPHP conventional configuration files
- Configuration in nginx Pathinfo mode supports thinkphp URL rewriting
- Modify the apache configuration file to remove index.php in thinkphp url
- Parse thinkphp basic configuration convention.php
- ThinkPHP common configuration options Summary

Hot AI Tools

Undress AI Tool
Undress images for free

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

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

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Title: The working principle and configuration method of GDM in Linux systems In Linux operating systems, GDM (GNOMEDisplayManager) is a common display manager used to control graphical user interface (GUI) login and user session management. This article will introduce the working principle and configuration method of GDM, as well as provide specific code examples. 1. Working principle of GDM GDM is the display manager in the GNOME desktop environment. It is responsible for starting the X server and providing the login interface. The user enters

To run the ThinkPHP project, you need to: install Composer; use Composer to create the project; enter the project directory and execute php bin/console serve; visit http://localhost:8000 to view the welcome page.

ThinkPHP has multiple versions designed for different PHP versions. Major versions include 3.2, 5.0, 5.1, and 6.0, while minor versions are used to fix bugs and provide new features. The latest stable version is ThinkPHP 6.0.16. When choosing a version, consider the PHP version, feature requirements, and community support. It is recommended to use the latest stable version for best performance and support.

Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

Understanding Linux Bashrc: Function, Configuration and Usage In Linux systems, Bashrc (BourneAgainShellruncommands) is a very important configuration file, which contains various commands and settings that are automatically run when the system starts. The Bashrc file is usually located in the user's home directory and is a hidden file. Its function is to customize the Bashshell environment for the user. 1. Bashrc function setting environment

Performance comparison of Laravel and ThinkPHP frameworks: ThinkPHP generally performs better than Laravel, focusing on optimization and caching. Laravel performs well, but for complex applications, ThinkPHP may be a better fit.

ThinkPHP installation steps: Prepare PHP, Composer, and MySQL environments. Create projects using Composer. Install the ThinkPHP framework and dependencies. Configure database connection. Generate application code. Launch the application and visit http://localhost:8000.

Title: How to configure and install FTPS in Linux system, specific code examples are required. In Linux system, FTPS is a secure file transfer protocol. Compared with FTP, FTPS encrypts the transmitted data through TLS/SSL protocol, which improves Security of data transmission. In this article, we will introduce how to configure and install FTPS in a Linux system and provide specific code examples. Step 1: Install vsftpd Open the terminal and enter the following command to install vsftpd: sudo
