[PHP] Re: Match anything between two " that is not a " except if it is escaped...

2008-01-18 Thread Nikolay Ananiev
This is for double quotes: '/"[^"]*(?:.[^"]*)*"/' this is for single: '/\'[^\']*(?:.[^\']*)*\'/' i took these from the smarty compiler class. "mathieu leddet" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi everyone, I am struggling with regular expressi

[PHP] PHPPDO 1.0RC1 released

2008-02-02 Thread Nikolay Ananiev
Hi guys, I've just released phppdo-1.0RC1. From the readme: PHPPDO is a database abstraction layer over the current PHP database functions, which aim is to offer a migration path for new applications to the PDO classes presented in PHP 5.1. Why a migration path? Currently, most hosting provider

[PHP] Re: PHPPDO 1.0RC1 released

2008-02-02 Thread Nikolay Ananiev
"Larry Garfield" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Saturday 02 February 2008, Nikolay Ananiev wrote: >> Hi guys, >> I've just released phppdo-1.0RC1. From the readme: >> >> PHPPDO is a database abstraction layer over