Here is perfect example to convert text file into XML.
abc.txt file content is:
Nokia
Samsung
Micromax
If you want to conver this text file into XML formate like this:
<data>
<mobilestore>Sony</mobilestore>
<mobilestore>Pioneer</mobilestore>
<mobilestore>Boss</mobilestore>
</data>
First I used file() function for opening the file.
Then used DOMDocument for build the XML structure.
And last file_put_contents() function for saving he result XML file.
If you want exact example then please see here: http://stackoverflow.com/questions/6741251/convert-text-file-contents-to-xml
Enjot!
abc.txt file content is:
Nokia
Samsung
Micromax
If you want to conver this text file into XML formate like this:
<data>
<mobilestore>Sony</mobilestore>
<mobilestore>Pioneer</mobilestore>
<mobilestore>Boss</mobilestore>
</data>
Solution
First I used file() function for opening the file.
Then used DOMDocument for build the XML structure.
And last file_put_contents() function for saving he result XML file.
If you want exact example then please see here: http://stackoverflow.com/questions/6741251/convert-text-file-contents-to-xml
Enjot!
No comments:
Post a Comment