Writing a bit of PHP tonight and found that if you use parse_ini_file to load an INI file in PHP, there is a slightly hacky way of having double quotes in strings. For example, I tried these:
somevalue = "This ""string"" has quotes" somevalue = "This \"string\" has quotes"
But none of them worked! Turns out a quick look at the PHP manual reveals a simple (but a bit hacky) solution to this is to define a constant e.g. QUOTE to be “, and use that in the INI string.
// In the PHP: define('QUOTE', '"');
; and in the INI file somevalue = "This "QUOTE"string"QUOTE" has quotes"