Getting Started
The set method allows you to update directives:
$ini->set("include_path", "/tmp/php");
You can restore it to what is was (before you set it) like so:
$ini->restore("include_path");
Or you can restore all directives that you’ve updated:
$ini->cleanup();