Reading .ini files in PHP
By: David Sklar in PHP Tutorials on 2008-12-01
You want to use configuration files to initialize settings in your programs. Use parse_ini_file():
$config = parse_ini_file('/etc/myapp.ini');
The function parse_ini_file() reads configuration files structured like PHP's main php.ini file. Instead of applying the settings in the configuration file to PHP's configuration, however, parse_ini_file() returns the values from the file in an array.
For example, when parse_ini_file() is given a file with these contents:
; physical features eyes=brown hair=brown glasses=yes ; other features name=Susannah likes=monkeys,ice cream,reading
The array it returns is:
Array ( [eyes] => brown [hair] => brown [glasses] => 1 [name] => Susannah [likes] => monkeys,ice cream,reading )
Blank lines and lines that begin with ; in the configuration file are ignored. Other lines with name=value pairs are put into an array with the name as the key and the value, appropriately, as the value. Words such as on and yes as values are returned as 1, and words such as off and no are returned as the empty string.
To parse sections from the configuration file, pass 1 as a second argument to parse_ini_file(). Sections are set off by words in square brackets in the file:
[physical] eyes=brown hair=brown glasses=yes [other] name=Susannah likes=monkeys,ice cream,reading
If this file is in /etc/myapp.ini, then:
$conf = parse_ini_file('/etc/myapp.ini',1);
Puts this array in $conf:
Array ( [physical] => Array ( [eyes] => brown [hair] => brown [glasses] => 1 ) [other] => Array ( [name] => Susannah [likes] => monkeys,ice cream,reading ) )
Your configuration file can also be a valid PHP file that you load with require instead of parse_ini_file(). If the file config.php contains:
<?php // physical features $eyes = 'brown'; $hair = 'brown'; $glasses = 'yes'; // other features $name = 'Susannah'; $likes = array('monkeys','ice cream','reading'); ?>
You can set the variables $eyes, $hair, $glasses, $name, and $likes with:
require 'config.php';
The configuration file loaded by require needs to be valid PHP - including the <?php start tag and the ?> end tag. The variables named in config.php are set explicitly, not inside an array, as in parse_ini_file(). For simple configuration files, this technique may not be worth the extra attention to syntax, but it is useful for embedding logic in the configuration file:
<?php $time_of_day = (date('a') == 'am') ? 'early' : 'late'; ?>
The ability to embed logic in configuration files is a good reason to make the files PHP code, but it is helpful also to have all the variables set in the configuration file inside an array. Upcoming versions of PHP will have a feature called namespaces, which is the ability to group variables hierarchically in different bunches; you can have a variable called $hair in two different namespaces with two different values. With namespaces, all the values in a configuration file can be loaded into the Config namespace so they don't interfere with other variables.
Add Comment
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
- Your name, rating, website address, town, country, state and comment will be publicly displayed if entered.
- Aside from the data entered into these form fields, other stored data about your comment will include:
- Your IP address (not displayed)
- The time/date of your submission (displayed)
- Your email address will not be shared. It is collected for only two reasons:
- Administrative purposes, should a need to contact you arise.
- To inform you of new comments, should you subscribe to receive notifications.
- A cookie may be set on your computer. This is used to remember your inputs. It will expire by itself.
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
- Although the administrator will attempt to moderate comments, it is impossible for every comment to have been moderated at any given time.
- You acknowledge that all comments express the views and opinions of the original author and not those of the administrator.
- You agree not to post any material which is knowingly false, obscene, hateful, threatening, harassing or invasive of a person's privacy.
- The administrator has the right to edit, move or remove any comment for any reason and without notice.
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
- Data Science
- Android
- React Native
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Send push notifications using Expo tokens in PHP
PHP convert string to lower case
A Basic Example using PHP in AWS (Amazon Web Services)
Different versions of PHP - History and evolution of PHP
PHP code to write to a CSV file for Microsoft Applications
PHP code to write to a CSV file from MySQL query
PHP code to import from CSV file to MySQL
Password must include both numeric and alphabetic characters - Magento
Resume or Pause File Uploads in PHP
PHP file upload prompts authentication for anonymous users
PHP file upload with IIS on windows XP/2000 etc
Comments