Summary of usage of ini_set and ini_get functions in PHP_PHP tutorial

WBOY
Release: 2016-07-13 10:24:49
Original
831 people have browsed it

The ini_set function in php is a function that comes with php to modify and set the php.ini configuration file. It is very convenient to use this function. There is no need to manually modify the php.ini file. Sometimes we do not have the permission to modify php. ini file, use this function at this time.

Syntax: ini_set("option", "value"); it is best to put this function at the top of the php script

For example: ini_set("max_execution_time", "180");//Set the php script timeout to 180 seconds

For specific php options, please refer to the Configuration PHP Core section of the phpinfo file

ini_get is just the opposite of ini_set, used to get the value of the environment variable in the php.ini file.

Syntax: string ini_get (string varname); Returns the value of the option, if the value of the option is a boolean, it returns 0 or 1

For example: echo ini_get('max_execution_time');//Output 30

If you want to get the variable values ​​​​in the entire php.ini, we can use the enhanced function of ini_get ini_get_all(), which returns the entire php environment variables in the form of an array.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/825304.htmlTechArticleThe ini_set function in php is a function that comes with php to modify and set the php.ini configuration file. Use this The function is very convenient. We don’t need to manually modify the php.ini file. Sometimes we don’t have the permission to modify it...
Related labels:
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!