[PHP-DEV] Re: Implode() FR and Patch

2008-12-06 Thread Lorenzo Alberton
ilter() to the array before calling implode()? Best regards, -- Lorenzo Alberton http://www.alberton.info http://pear.php.net/user/quipo Quipo Free Internet: sicuro e veloce senza costi di attivazione e senza canone, 2 e-mai

[PHP-DEV] Re: CVS Account Request: afz

2008-01-27 Thread Lorenzo Alberton
Ali Fazelzadeh wrote: PEAR Maintainer. for now, i talk with Lorenzo Alberton MDB2(lead maintainer) for developing this package. confirmed. Best regards, -- Lorenzo Alberton http://pear.php.net/user/quipo Quipo Free

[PHP-DEV] Re: [PHP-CVS] Re: cvs: php-src /ext/pdo pdo_sql_parser.cpdo_sql_parser.re/ext/pdo/tests bug_43130.phpt

2007-11-16 Thread Lorenzo Alberton
Lorenzo Alberton wrote: I talked to Christopher Jones (of Oracle fame) and Lorenzo (MDB2 maintainer). Its clear that the only named parameter supporting database I know does not support dash inside named parameters. Its also dangerous since it means that whitespace typos could have

[PHP-DEV] Re: [PHP-CVS] Re: cvs: php-src /ext/pdo pdo_sql_parser.cpdo_sql_parser.re /ext/pdo/tests bug_43130.phpt

2007-11-16 Thread Lorenzo Alberton
. I won't like having vendor specific rules there but a subset which works with most/all backends and which should full-fill most user's needs. The regexp from above looks like a good compromise for me. This one is safer: /^((?:\d+)|(?:[a-z][a-z0-9_]*))$/i HTH Best regards, -- L

Re: [PHP-DEV] 5.2.4RC1 Released

2007-08-03 Thread Lorenzo Alberton
applied a patch after a discussion with Marcus. the latest snapshot works for me, many thanks! Best regards, -- Lorenzo Alberton http://pear.php.net/user/quipo [1] http://www.alberton.info/php_pdo_firebird_status.html Q

[PHP-DEV] Re: php_interbase problems

2007-08-02 Thread Lorenzo Alberton
net/bug.php?id=41429 http://bugs.php.net/bug.php?id=41345 Best regards, -- Lorenzo Alberton http://pear.php.net/user/quipo Quipo Free Internet: sicuro e veloce senza costi di attivazione e senza canone, 2 e-mail da 25 Mb, 150 Mb

Re: [PHP-DEV] PDO Firebird status?

2006-04-10 Thread Lorenzo Alberton
://www.alberton.info/php_pdo_firebird_status.html Comments are welcome. HTH Best regards, -- Lorenzo Alberton http://pear.php.net/user/quipo -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PDO Firebird status?

2006-04-09 Thread Lorenzo Alberton
estions :-) Ard? I really hope he's still active, he did a terrific job with the PHP5's interbase extension... -- Lorenzo Alberton http://pear.php.net/user/quipo -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] PDO Firebird status?

2006-04-09 Thread Lorenzo Alberton
ive? TIA Best regards, -- Lorenzo Alberton http://pear.php.net/user/quipo -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: namespace separator ideas

2005-11-27 Thread Lorenzo Alberton
means "less than the opposite of" == ====== Regards, -- Lorenzo Alberton http://pear.php.net/user/quipo -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Reference Notice

2005-07-17 Thread Lorenzo Alberton
Rasmus Lerdorf wrote: Yes, we know there are still some issues here. People are working on it. Or there is at least intent to work on it. See http://bugs.php.net/bug.php?id=33643 actually this is the bug Robert was referring to: http://bugs.php.net/bug.php?id=33558 Regards, -- Lorenzo

Re: [PHP-DEV] PHP 5.0.0 Test roll

2004-07-13 Thread Lorenzo Alberton
On Tue, 13 Jul 2004 08:59:22 -0700, Andi Gutmans wrote: > Is this something Edin should fix or is it in php5/pear? Everything should be fine, now, thanks to Edin. I asked the pear-qa team to doublecheck, just in case ;-) Regards, -- Lorenzo Alberton http://pear.php.net/user/quipo > At

Re: [PHP-DEV] PHP 5.0.0 Test roll

2004-07-13 Thread Lorenzo Alberton
lly really want to bundle all the packages that have been bundled so far, at least upgrade them, please. If in doubt please ask Pierre. Many thanks, -- Lorenzo Alberton http://pear.php.net/user/quipo -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] redefined constructor: old and new syntax

2004-03-18 Thread Lorenzo Alberton
On Thu, 18 Mar 2004 10:59:40 +0200 (IST), Stanislav Malyshev wrote: > Why would anyone need this? if __construct() contains php5-only > syntax, it won't work anyway on php4. I just image the case of a class with some optimizations for php5, but with a fallback implementation of some of its feature

Re: [PHP-DEV] redefined constructor: old and new syntax

2004-03-18 Thread Lorenzo Alberton
ctor *could* make sense. Thanks Lorenzo > At 01:28 AM 3/18/2004 +0100, Lorenzo Alberton wrote: >> Why has this one been committed? >> >> >> http://cvs.php.net/diff.php/ZendEngine2/zend_compile.c?login=2&r1=1.55 >> 1&r2=1.552 &ty=h >> >> &

[PHP-DEV] redefined constructor: old and new syntax

2004-03-17 Thread Lorenzo Alberton
Why has this one been committed? http://cvs.php.net/diff.php/ZendEngine2/zend_compile.c?login=2&r1=1.551&r2=1.552 &ty=h It prevents constructors being redefined. That is fine, *except* for the following case: class MyClass { function MyClass() { //constructor for php4, //SHO