phpquotesini

Adding quotes to .ini file values PHP


I have a .ini file as follows:

[playlist]
numberofentries=2
File1=http://87.230.82.17:80
Title1=(#1 - 365/1400) Example Title
Length1=-1
File2=http://87.230.56.25:80
Title2=(#2 - 370/1400) Example Title
Length1=-1
Version=2 

I would like to know how I can programmatically read this file in, add quotes around the file and title values and then save this file again in PHP.

I would greatly appreciate any help.


Solution

  • When writing into a file you need to use escaping " using \" and \ using \\. For writing and reading .ini files, I suggest you looking at the two linked resources.