


thinkPHP5.0 framework configuration format, loading, parsing and reading methods
This article mainly introduces the thinkPHP5.0 framework configuration format, loading parsing and reading methods, and combines examples with a detailed analysis of the common formats of thinkPHP5.0 framework configuration, loading parsing methods, reading methods and other related operating techniques. Friends who need it can refer to
. The examples in this article describe the thinkPHP5.0 framework configuration format, loading parsing and reading methods. Share it with everyone for your reference, the details are as follows:
ThinkPHP supports multiple formats of configuration formats, but they are all ultimately parsed into PHP arrays.
PHP array definition
The way to return a PHP array is the default configuration definition format, for example:
1 2 3 4 5 6 7 8 9 10 11 |
|
Configuration parameter names are not case-sensitive ( Because definitions in upper and lower case will be converted to lower case), the new version recommends using lower case to define configuration parameter specifications.
You can also use a two-dimensional array in the configuration file to configure more information, for example:
1 2 3 4 5 6 7 8 9 |
|
Other configuration formats are supported
In addition In addition to using native PHP arrays, you can also use other format support such as json/xml/ini (extended through drivers).
For example, we can use the following method to read the json configuration file:
1 |
|
ini format Configuration example:
DEFAULT_MODULE=Index ;Default module
URL_MODEL=2 ;URL mode
SESSION_AUTO_START=on ;Whether to open session
xml formatConfiguration example:
1 2 3 4 5 |
|
json formatConfiguration example:
1 2 3 4 5 |
|
Secondary configuration
Configuration parameters support level 2. For example, the following is an example of setting and reading level 2 configuration:
1 2 3 4 5 6 7 8 9 10 |
|
The system does not support reading configuration parameters above level 2 and needs to be read manually step by step.
With scope, secondary configuration operations are still supported.
If configuration files in other formats are used, the secondary configuration is defined as follows (taking ini and xml as examples):
1 2 3 4 5 6 7 |
|
Standard xml format file definition:
1 2 3 4 5 6 7 8 9 10 11 |
|
1 2 3 4 |
|
Reading configuration parameters
After setting the configuration parameters, you can use the get method to read the configuration. For example:1 |
|
1 |
|
1 2 |
|
1 |
|
1 |
|
How to execute native SQL statements in thinkPHP framework
ThinkPHP5 framework simply implements batch queries
How to automatically generate modules and directories for Thinkphp5.0
The above is the detailed content of thinkPHP5.0 framework configuration format, loading, parsing and reading methods. For more information, please follow other related articles on the PHP Chinese website!

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

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











How to use pandas to read txt files correctly requires specific code examples. Pandas is a widely used Python data analysis library. It can be used to process a variety of data types, including CSV files, Excel files, SQL databases, etc. At the same time, it can also be used to read text files, such as txt files. However, when reading txt files, we sometimes encounter some problems, such as encoding problems, delimiter problems, etc. This article will introduce how to read txt correctly using pandas

Practical tips for reading txt files using pandas, specific code examples are required. In data analysis and data processing, txt files are a common data format. Using pandas to read txt files allows for fast and convenient data processing. This article will introduce several practical techniques to help you better use pandas to read txt files, along with specific code examples. Reading txt files with delimiters When using pandas to read txt files with delimiters, you can use read_c

The practical method of reading web page data in Pandas requires specific code examples. During data analysis and processing, we often need to obtain data from web pages. As a powerful data processing tool, Pandas provides convenient methods to read and process web page data. This article will introduce several commonly used practical methods for reading web page data in Pandas, and attach specific code examples. Method 1: Use the read_html() function. Pandas’ read_html() function can read directly from the web page.

Example of using OpenCSV to read and write CSV files in Java. CSV (Comma-SeparatedValues) refers to comma-separated values and is a common data storage format. In Java, OpenCSV is a commonly used tool library for reading and writing CSV files. This article will introduce how to use OpenCSV to implement examples of reading and writing CSV files. Introducing the OpenCSV library First, you need to introduce the OpenCSV library to

How to read Excel files with PHP and FAQs Excel is a very common spreadsheet file format, and many businesses and data are stored in Excel files. During the development process, if you need to import the data in the Excel file into the system, you need to use PHP to read the Excel file. This article will introduce how to read Excel files with PHP and answer common questions. 1. How to read Excel files with PHP 1. Use the PHPExcel class library PHPExcel is a P

Quick Start: Pandas method of reading JSON files, specific code examples are required Introduction: In the field of data analysis and data science, Pandas is one of the important Python libraries. It provides rich functions and flexible data structures, and can easily process and analyze various data. In practical applications, we often encounter situations where we need to read JSON files. This article will introduce how to use Pandas to read JSON files, and attach specific code examples. 1. Installation of Pandas

How to read binary files in Golang? Binary files are files stored in binary form that contain data that a computer can recognize and process. In Golang, we can use some methods to read binary files and parse them into the data format we want. The following will introduce how to read binary files in Golang and give specific code examples. First, we need to open a binary file using the Open function from the os package, which will return a file object. Then we can make

Getting started with PHP file processing: Step-by-step guide for reading and writing In web development, file processing is a common task, whether it is reading files uploaded by users or writing the results to files for subsequent use. Understand how to use PHP Document processing is very important. This article will provide a simple guide to introduce the basic steps of reading and writing files in PHP, and attach code examples for reference. File reading in PHP, you can use the fopen() function to open a file and return a file resource (file
