Zend_Config internally uses PHP's built-in function parse_ini_file(), which has some limitations such as lack of escaping. But if you are using PHP 5.3, you can use single quotes around the value:
something = ' "" ' -- Hector On Tue, Apr 13, 2010 at 8:14 AM, batykar <[email protected]> wrote: > > Hello, > > I want to write something like: > > something = " \"\" " > ; \ not work > > > I use Zend_Config_Ini and ZF 1.0.3. > > Thanks! > > -- > View this message in context: > http://n4.nabble.com/How-to-escape-double-quotes-in-ini-tp1838559p1838559.html > Sent from the Zend Framework mailing list archive at Nabble.com. >
