Detailed explanation of ThinkPHP functions: C method, detailed explanation of thinkphp functions_PHP tutorial

WBOY
Release: 2016-07-13 09:44:24
Original
718 people have browsed it

Detailed explanation of ThinkPHP functions: C method, detailed explanation of thinkphp functions

C method is the method used by ThinkPHP to set, obtain, and save configuration parameters, and is used more frequently.
To understand the C method, you need to first understand the configuration of ThinkPHP, because all operations of the C method are related to the configuration. ThinkPHP's configuration file is defined in PHP array format.
Due to the function overloading design, there are many uses. Let’s explain them one by one.
Set parameters

C('DB_NAME','thinkphp');
Copy after login

indicates that the value of the DB_NAME configuration parameter is set to thinkphp. Since the configuration parameters are not case-sensitive, the following writing method is the same:

C('db_name','thinkphp');
Copy after login

However, it is recommended to keep the configuration definition specifications in uniform capitalization.
All parameters of the project can be dynamically changed through this method before taking effect. The last set value will overwrite the definition in the previous settings or conventional configuration. You can also use the parameter configuration method to add new configurations.
Supports the setting of secondary configuration parameters, such as:

C('USER.USER_ID',8);
Copy after login

Configuration parameters are not recommended to exceed level two.
If you want to set multiple parameters, you can use batch settings, for example:

$config['user_id'] = 1;
$config['user_type'] = 1;
C($config);
Copy after login

If the first parameter of the C method is passed into an array, it means batch assignment. The above assignment is equivalent to:

C('USER_ID',1);
C('USER_TYPE',1);
Copy after login


Get parameters
To get the set parameters, you can use:

$userId = C('USER_ID');
$userType = C('USER_TYPE');
Copy after login

If the USER_ID parameter has not been defined, NULL is returned.
can also support obtaining secondary configuration parameters, for example:

$userId = C('USER.USER_ID');
Copy after login

If the incoming configuration parameters are empty, it means getting all parameters:

$config = C();
Copy after login


Save settings
Version 3.1 adds a function to permanently save setting parameters, only for batch assignment, for example:

$config['user_id'] = 1;
$config['user_type'] = 1;
C($config,'name');
Copy after login

After setting the config parameters in batches, all current configuration parameters will be saved to the cache file (or other configured caching methods).
After saving, if you want to retrieve the saved parameters, you can use

$config = C('','name');
Copy after login

The name is the cache identifier used when saving parameters earlier. It must be consistent to correctly retrieve the saved parameters. The retrieved parameters will be merged with the current configuration parameters, without manual merging.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1048769.htmlTechArticleDetailed explanation of ThinkPHP function: C method, detailed explanation of thinkphp function C method is used by ThinkPHP to set, obtain, and save configuration parameters method is used more frequently. You need to understand the C method first...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!