component-ini icon indicating copy to clipboard operation
component-ini copied to clipboard

Read and write INI configurations.

Results 1 component-ini issues
Sort by recently updated
recently updated
newest added

Adding the possibility to also propagate the comments when writing the ini file. Works as follows: $ini = 'piwik.ini'; $reader = new \Piwik\Ini\IniReader(); $config = $reader->readFile($ini); $comments = $reader->readComments($ini); $writer...