PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of jawira   php.ini Settings Manager   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: php.ini Settings Manager
Get and set the values of PHP settings dynamically
Author: By
Last change:
Date: 4 years ago
Size: 795 bytes
 

Contents

Class file image Download

PHP ini settings

Change PHP's settings on the fly.

<!-- BADGES: https://github.com/php-pds/badges https://poser.pugx.org/ https://php-eye.com/about#badges https://phppackages.org/p/jawira/case-converter -->

Usage

Usually you configure PHP through php.ini file, however it's also possible to change these settings at runtime:

Set values:

$ini = new Settings();
$oldValue = $ini->set('option-name','value');

Get values:

$ini = new Settings();
$oldValue = $ini->get('option-name');

How to install

@todo

Requirements

@todo

Contributing

To contribute to this project please read CONTRIBUTING.md

License

This library is licensed under the MIT license.