Re: [PHP-DEV] imap4 search criteria

2010-01-30 Thread Joey Smith
There's an open bug on this, #15238 (http://bugs.php.net/bug.php?id=15238&;). I'm sure patches would be welcomed. On Fri, Jan 29, 2010 at 03:49:18PM -0500, Dominik Gehl wrote: > Hi, > > I noticed that the imap extension seems to support only IMAP2 search criteria. > > This is caused by the fact

Re: [PHP-DEV] About optimization

2010-01-30 Thread Richard Lynch
On Sat, January 23, 2010 2:26 pm, steve wrote: > The guys at Zend muscled in to change the culture as well, and have I'm not sure that's a fair representation of the historical reality of how Zend came into existence... > succeeded to a large degree, pushing PHP into the enterprise by > offering

Re: [PHP-DEV] Dots and spaces in variable names are converted to underscores.

2010-01-30 Thread Richard Lynch
I have taken the liberty of making an RFC for this: http://wiki.php.net/rfc/url_dots Feel free to add/edit it as fit, particularly since it's my first use of that RFC wiki, and I'm not good at wiki markup, and I probably missed something from this thread. I intentionally left out the ?a_b=1&a.b=2

Re: [PHP-DEV] About optimization

2010-01-30 Thread Stan Vassilev
The gc code when combined with apc is still a bit shaky in 5.3. I haven't figured out why yet. And my motivation for figuring it out is pretty low as code that relies on gc is slow. -Rasmus Motivation for relying on GC in 5.3 is pretty low because 5.3 is still a bit shaky... -- PHP Intern

[PHP-DEV] newbie: my extension not getting compiled/included in Php-5.3.1 (RH linux)

2010-01-30 Thread Sanjeev Kumar
I am new to Php-dev and trying to add an extension to Php I downloaded php-5.3.1 src on RedHatLinux4 . After adding my extension, the configure/make doesn't build my extension and include in Php. commands that I ran after unzipping the php5.3.1 src: cd ext ./ext_skel --extname=pdo-mydbext cd

Re: [PHP-DEV] newbie: my extension not getting compiled/included in Php-5.3.1 (RH linux)

2010-01-30 Thread Jess Portnoy
Hello, Please attach your config.m4 file which will help understand what's wrong. You should also try to compare yours with an existing one, maybe the problem will become apparent simply by comparison. May the source be with you, Best regards, Jess Portnoy Sanjeev Kumar wrote: I am new to