예제 #1
0
 /**
  * Close the writer
  */
 public function close()
 {
     // Write the footer
     $this->_append("    </tracklist>\n");
     $this->_append("</playlist>");
     parent::close();
 }
예제 #2
0
 /**
  * Close the writer
  */
 public function close()
 {
     // Write the header
     $this->_prepend("[playlist]\nNumberOfEntries=" . $this->_fileCount . "\n\n");
     // Write the footer
     $this->_append("Version=2");
     parent::close();
 }
예제 #3
0
 /**
  * Close the writer
  */
 public function close()
 {
     // Write the footer
     $this->_append("</asx>");
     parent::close();
 }