Search code examples
phpxmlxspf

Can php create a xspf file the same way as it writes xml?


I know you can create an xml file with php

$doc->save("write.xml") 

but is it possible to write to another file type, like .xspf ?


Solution

  • Yes, just change the file name.

    An xspf file is just XML with a different filename extension.