コード例 #1
0
ファイル: XMLWriter.php プロジェクト: kaantunc/MYK-BOR
 /**
  * Create new XMLWriter
  *
  * @param int $tempLocation Temporary storage location
  * @param string $tempFolder Temporary storage folder
  */
 public function __construct($tempLocation = self::STORAGE_MEMORY, $tempFolder = './')
 {
     // Create internal XMLWriter
     $this->xmlWriter = new \XMLWriter();
     // Open temporary storage
     if ($tempLocation == self::STORAGE_MEMORY) {
         $this->xmlWriter->openMemory();
     } else {
         // Create temporary filename
         $this->tempFile = @tempnam($tempFolder, 'xml');
         // Open storage
         if ($this->xmlWriter->openUri($this->tempFile) === false) {
             // Fallback to memory...
             $this->xmlWriter->openMemory();
         }
     }
     // Set xml Compatibility
     $compatibility = Settings::getCompatibility();
     if ($compatibility) {
         $this->xmlWriter->setIndent(false);
         $this->xmlWriter->setIndentString('');
     } else {
         $this->xmlWriter->setIndent(true);
         $this->xmlWriter->setIndentString('  ');
     }
 }
コード例 #2
0
ファイル: SettingsTest.php プロジェクト: kaantunc/MYK-BOR
 /**
  * Test set/get compatibity option
  */
 public function testSetGetCompatibility()
 {
     $this->assertTrue(Settings::getCompatibility());
     $this->assertTrue(Settings::setCompatibility(false));
     $this->assertFalse(Settings::getCompatibility());
     $this->assertFalse(Settings::setCompatibility('Non boolean'));
 }