コード例 #1
0
ファイル: Factory.php プロジェクト: retrinko/ini
 /**
  * @param IniSection[] $iniSections
  *
  * @return IniFile
  * @throws InvalidDataException
  */
 public static function fromIniSections(array $iniSections)
 {
     $iniFile = new IniFile();
     foreach ($iniSections as $iniSection) {
         if (false === $iniSection instanceof IniSection) {
             throw new InvalidDataException('Invalid data! ');
         }
         $iniFile->addSection($iniSection);
     }
     return $iniFile;
 }
コード例 #2
0
ファイル: create.php プロジェクト: retrinko/ini
use Retrinko\Ini\IniSection;
try {
    // Create new IniFile instance
    $iniFile = new IniFile();
    // Create section "base"
    $section = new IniSection('base');
    // Add items to section "base"
    $section->set('hello', 'world');
    $section->set('colors', ['red', 'green']);
    $section->set('rgb', ['red' => 'AA0000', 'green' => '00AA00']);
    $section->set('width', 25);
    $section->set('height', 50.33);
    $section->set('bool', true);
    $section->set('nullValue', null);
    // Add section "base" to ini file
    $iniFile->addSection($section);
    // Add child section "child"
    $childSection = new IniSection('child', $section);
    // Add items to section "child"
    $childSection->set('height', 20);
    $childSection->set('width', 20);
    // Add section "child" to ini file
    $iniFile->addSection($childSection);
    // Add item values to sections
    $iniFile->set('base', 'new-item', 'value');
    $iniFile->set('child', 'last-item', 'last');
    // Save to file
    $iniFile->save(__DIR__ . '/test.ini');
} catch (\Exception $e) {
    var_dump($e->getMessage());
}