[PHP-DEV] Re: PR 1217: Add support for upload files from buffer string in curl extenion

2015-04-24 Thread Alexander Moskalev
I think It same as my current pull-request - another class with duplicate functionality and duplicate code. We save only few strings from base class with $postname field. What benefits we will add using inheriting from CURLFile for php developers? пятница, 24 апреля 2015 г. пользователь Alexey

Re: [PHP-DEV] Re: PDO Oracle driver

2015-04-24 Thread Johannes Schlüter
On Fri, 2015-04-24 at 09:16 +0300, Arvids Godjuks wrote: May I question the sanity of the words written in this email? :D (it's a joke). The whole point of mysqlnd drivers and other improvements was to cut down on data copying, improving performance and doing a lot of other stuff. Moving

Re: [PHP-DEV] Re: PDO Oracle driver

2015-04-24 Thread Lester Caine
On 24/04/15 07:16, Arvids Godjuks wrote: 2015-04-24 4:42 GMT+03:00 Benjamin Eberlei kont...@beberlei.de: On Thu, Apr 23, 2015 at 3:45 PM, Arvids Godjuks arvids.godj...@gmail.com wrote: PDO is everywhere. Doctrine? Based on PDO. You can use mysqli, oci8 or sqlsrv for example without

[PHP-DEV] Re: PR 1217: Add support for upload files from buffer string in curl extenion

2015-04-24 Thread Alexander Moskalev
2015-04-24 11:10 GMT+03:00 Alexander Moskalev ir...@irker.net: I think It same as my current pull-request - another class with duplicate functionality and duplicate code. We save only few strings from base class with $postname field. What benefits we will add using inheriting from CURLFile

[PHP-DEV] Re: [RFC] Improved Error Callback Mechanism

2015-04-24 Thread Olivier Garcia
Greetings Internals, A few weeks ago, Patrick (patrickalla...@php.net) and I wrote a RFC [1] to improve the error callback mechanism and we just submitted a patch [2] - mostly written by Patrick - for review. Since our patch only modifies PHP's inner working and does nothing on the userland, we

Re: [PHP-DEV] Re: PR 1217: Add support for upload files from buffer string in curl extenion

2015-04-24 Thread Lester Caine
On 24/04/15 09:10, Alexander Moskalev wrote: (Do not top-post please.) Unfortunately some people will never be courteous enough to follow the agreed rules of the list :( Yes some email clients are so naff they can't cope with those rules, but perhaps in that case they should be asked simply to

Re: [PHP-DEV] Re: PDO Oracle driver

2015-04-24 Thread Arvids Godjuks
2015-04-24 12:59 GMT+03:00 Johannes Schlüter johan...@schlueters.de: On Fri, 2015-04-24 at 09:16 +0300, Arvids Godjuks wrote: May I question the sanity of the words written in this email? :D (it's a joke). The whole point of mysqlnd drivers and other improvements was to cut down on

Re: [PHP-DEV] Re: PDO Oracle driver

2015-04-24 Thread Benjamin Eberlei
On Fri, Apr 24, 2015 at 8:16 AM, Arvids Godjuks arvids.godj...@gmail.com wrote: 2015-04-24 4:42 GMT+03:00 Benjamin Eberlei kont...@beberlei.de: On Thu, Apr 23, 2015 at 3:45 PM, Arvids Godjuks arvids.godj...@gmail.com wrote: PDO is everywhere. Doctrine? Based on PDO. You can use

Re: [PHP-DEV] Re: [RFC] Improved Error Callback Mechanism

2015-04-24 Thread Benjamin Eberlei
On Fri, Apr 24, 2015 at 12:24 PM, Olivier Garcia oliviergar...@php.net wrote: Greetings Internals, A few weeks ago, Patrick (patrickalla...@php.net) and I wrote a RFC [1] to improve the error callback mechanism and we just submitted a patch [2] - mostly written by Patrick - for review.

Re: [PHP-DEV] Re: [VOTE] Remove deprecated functionality in PHP 7

2015-04-24 Thread Nikita Popov
On Mon, Jan 19, 2015 at 4:00 AM, Yasuo Ohgaki yohg...@ohgaki.net wrote: Hi Nikita, On Sun, Jan 18, 2015 at 8:01 PM, Nikita Popov nikita@gmail.com wrote: That would be appreciated! When dropping the ini settings, please make sure that it's still possible to use Zend multibyte. If I

Re: [PHP-DEV] PR 1217: Add support for upload files from buffer string in curl extenion

2015-04-24 Thread Alexey Zakhlestin
On 23 Apr 2015, at 14:26, Alexander Moskalev ir...@irker.net wrote: Because currently CURLFile have this constructor: public __construct http://php.net/manual/en/curlfile.construct.php ( string $filename [, string $mimetype [, string $postname ]] ) And we cannot replace this arguments to

Re: [PHP-DEV] Re: PDO Oracle driver

2015-04-24 Thread Pierre Joye
On Fri, Apr 24, 2015 at 1:16 PM, Arvids Godjuks arvids.godj...@gmail.com wrote: 2015-04-24 4:42 GMT+03:00 Benjamin Eberlei kont...@beberlei.de: On Thu, Apr 23, 2015 at 3:45 PM, Arvids Godjuks arvids.godj...@gmail.com wrote: PDO is everywhere. Doctrine? Based on PDO. You can use mysqli,

Re: [PHP-DEV] Re: [VOTE] Remove deprecated functionality in PHP 7

2015-04-24 Thread Yasuo Ohgaki
Hi Nikita, On Sat, Apr 25, 2015 at 5:22 AM, Nikita Popov nikita@gmail.com wrote: Maybe we should just keep the mbstring and iconv ini settings (and undeprecate them)? If we retain the ability to set a per-extension encoding, we may just as well allow setting it via ini setting instead of

Re: [PHP-DEV] Re: PDO Oracle driver

2015-04-24 Thread Arvids Godjuks
2015-04-24 4:42 GMT+03:00 Benjamin Eberlei kont...@beberlei.de: On Thu, Apr 23, 2015 at 3:45 PM, Arvids Godjuks arvids.godj...@gmail.com wrote: PDO is everywhere. Doctrine? Based on PDO. You can use mysqli, oci8 or sqlsrv for example without problems in Doctrine. Exposing some of the

Re: [PHP-DEV] Re: [VOTE] Remove deprecated functionality in PHP 7

2015-04-24 Thread Yasuo Ohgaki
Hi Nikita, On Sat, Apr 25, 2015 at 1:44 AM, Nikita Popov nikita@gmail.com wrote: All items mentioned in the RFC are removed now, excepting the mbstring/iconv encoding settings. I tried doing that, but it looks like the new encoding settings don't actually work. I also noticed that they

Re: [PHP-DEV] Re: [VOTE] Remove deprecated functionality in PHP 7

2015-04-24 Thread Nikita Popov
On Fri, Apr 24, 2015 at 10:11 PM, Yasuo Ohgaki yohg...@ohgaki.net wrote: Hi Nikita, On Sat, Apr 25, 2015 at 1:44 AM, Nikita Popov nikita@gmail.com wrote: All items mentioned in the RFC are removed now, excepting the mbstring/iconv encoding settings. I tried doing that, but it looks