June 16, 2015

PHP: Convert text file into XML.

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>

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

Integrating Google reCAPTCHA v3 in HTML Form with PHP

  What is Google reCAPTCHA v3? Google reCAPTCHA is a free service that helps protect websites from spam and abuse. reCAPTCHA v3 is the lates...