InfinityQuest - Programming Code Tutorials and Examples with Python, C++, Java, PHP, C#, JavaScript, Swift and more

Menu
  • Home
  • Sitemap

Python Programming Language Best Tutorials and Code Examples

Learn Python Right Now!
Home
PHP
Reading Configuration Files in PHP
PHP

Reading Configuration Files in PHP

InfinityCoder December 26, 2016

You want to use configuration files to initialize settings in your programs.

Use parse_ini_file():

1
$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:

1
2
3
4
5
6
7
8
; physical features
eyes=brown
hair=brown
glasses=yes
 
; other features
name=Susannah
likes=monkeys,ice cream,reading

the array it returns is:

1
2
3
4
5
6
7
8
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:

1
2
3
4
5
6
7
8
[physical]
eyes=brown
hair=brown
glasses=yes
 
[other]
name=Susannah
likes=monkeys,ice cream,reading

If this file is in /etc/myapp.ini, then:

1
$conf = parse_ini_file('/etc/myapp.ini',1);

puts the array in $conf:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
Array
(
    [physical] => Array
       (
            [eyes] => brown
            [hair] => brown
            [glasses] => 1
       )
    [other] => Array
       (
            [name] => Susannah
            [likes] => monkeys,ice cream,reading
       )
)

Another approach to configuration is to make your configuration file a valid PHP file that you load with require instead of parse_ini_file().

If the file config.php contains:

1
2
3
4
5
6
7
8
9
<?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 a simple require ‘config.php’;.
The configuration file loaded by require needs to be valid PHP—including the <?php start 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, such as this statement:

1
$time_of_day = (date('a') == 'am') ? 'early' : 'late';

 

Share
Tweet
Email
Prev Article
Next Article

Related Articles

Tuning Error Handling in PHP
You want to alter the error-logging sensitivity on a particular …

Tuning Error Handling in PHP

Reading Passwords in PHP
You need to read a string from the command line …

Reading Passwords in PHP

About The Author

InfinityCoder
InfinityCoder

Leave a Reply

Cancel reply

Recent Tutorials InfinityQuest

  • Adding New Features to bash Using Loadable Built-ins in bash
    Adding New Features to bash Using Loadable …
    June 27, 2017 0
  • Getting to the Bottom of Things in bash
    Getting to the Bottom of Things in …
    June 27, 2017 0

Recent Comments

  • fer on Turning a Dictionary into XML in Python
  • mahesh on Turning a Dictionary into XML in Python

Categories

  • Bash
  • PHP
  • Python
  • Uncategorized

InfinityQuest - Programming Code Tutorials and Examples with Python, C++, Java, PHP, C#, JavaScript, Swift and more

About Us

Start learning your desired programming language with InfinityQuest.com.

On our website you can access any tutorial that you want with video and code examples.

We are very happy and honored that InfinityQuest.com has been listed as a recommended learning website for students.

Popular Tags

binary data python CIDR convert string into datetime python create xml from dict python dictionary into xml python how to create xml with dict in Python how to write binary data in Python IP Address read binary data python tutorial string as date object python string to datetime python

Archives

  • June 2017
  • April 2017
  • February 2017
  • January 2017
  • December 2016
  • November 2016
Copyright © 2021 InfinityQuest - Programming Code Tutorials and Examples with Python, C++, Java, PHP, C#, JavaScript, Swift and more
Programming Tutorials | Sitemap