Can anybody suggest a reason why this has never moved from main to php_5_2 or php_5_3?
It was added to MAIN in dec '06
Steve
The information contained in this email is intended for the personal and confidential use
of the addressee only. It may also be privileged information. If you are not the intended
recipient then you are hereby notified that you have received this document in error and
that any review, distribution or copying of this document is strictly prohibited. If you have
received this communication in error, please notify Brendata immediately on:
+44 (0)1268 466100, or email 'technical@brendata.co.uk'
Brendata (UK) Ltd
Nevendon Hall, Nevendon Road, Basildon, Essex. SS13 1BX UK
Registered Office as above. Registered in England No. 2764339
See our current vacancies at www.brendata.co.uk
Can anybody suggest a reason why this has never moved from main to php_5_2 or php_5_3?
I did wonder the same months ago, but noone seemed to care, and I had
no use for it myself so I never bothered merging it :)
The information contained in this email is intended for the personal and confidential use
Are you high?
-Hannes
If it's not stupid question, what is the main branch for? Presumably the other branches aren't just branched from this at a point in time or we'd have this in there.
High? Nah, just chilled after a glass or two of wine. Can't beat a good corporate disclaimer!
Steve
If it's not stupid question, what is the main branch for? Presumably
the other branches aren't just branched from this at a point in time
or we'd have this in there.
The "main" branch? PHP_5_X are the "stable" branches, "HEAD" is the
development branch (at least in theory ...) So stuff is added to HEAD
and merged bacxk when it's stable enough and need (and somebody cares)
+1 from me, though...
johannes
The "main" branch? PHP_5_X are the "stable" branches, "HEAD" is the
development branch (at least in theory ...) So stuff is added to HEAD
and merged bacxk when it's stable enough and need (and somebody cares)+1 from me, though...
johannes
Now, if we could work the phrase "namespaces" into this somehow we'd probably have this in HEAD within a few days.....
On a serious note, there seem to have been quite a few commits to MAIN over time, so I wonder what else is lurking there that could be useful?
If nobody else is doing this then I'm happy to build a diff, What's involved in getting a commit account for CVS or is it easier to just email a diff set to somebody (in which case, who?)
Steve
The information contained in this email is intended for the personal and confidential use
of the addressee only. It may also be privileged information. If you are not the intended
recipient then you are hereby notified that you have received this document in error and
that any review, distribution or copying of this document is strictly prohibited. If you have
received this communication in error, please notify Brendata immediately on:
+44 (0)1268 466100, or email 'technical@brendata.co.uk'
Brendata (UK) Ltd
Nevendon Hall, Nevendon Road, Basildon, Essex. SS13 1BX UK
Registered Office as above. Registered in England No. 2764339
See our current vacancies at www.brendata.co.uk
hi,
The "main" branch? PHP_5_X are the "stable" branches, "HEAD" is the
development branch (at least in theory ...) So stuff is added to HEAD
and merged bacxk when it's stable enough and need (and somebody cares)+1 from me, though...
johannes
Now, if we could work the phrase "namespaces" into this somehow we'd probably have this in HEAD within a few days.....
On a serious note, there seem to have been quite a few commits to MAIN over time, so I wonder what else is lurking there that could be useful?
If nobody else is doing this then I'm happy to build a diff, What's involved in getting a commit account for CVS or is it easier to just email a diff set to somebody (in which case, who?)
Easiest (and safest) is:
- to create a patch (cvs diff -up)
- open a feature request (a bug :) in bugs.php.net, with a link to the patch
- post it in this thread as well with a ref to the bug #
Doing so will make sure that your patch will not be lost in the archive :)
After having provided a couple of patches, you may consider a CVS
account request.
Thanks for your work!
Cheers,
Pierre
On Mon, Oct 20, 2008 at 22:43, Steve Hanselman
SteveH@brendata.co.uk wrote:Can anybody suggest a reason why this has never moved from main to
php_5_2 or php_5_3?I did wonder the same months ago, but noone seemed to care, and I had
no use for it myself so I never bothered merging it :)
The functionality is rather handy (I think), I would +1 for its
addition to the 5.3 branch.
Ilia Alshanetsky
On Mon, Oct 20, 2008 at 22:43, Steve Hanselman
SteveH@brendata.co.uk wrote:Can anybody suggest a reason why this has never moved from main to
php_5_2 or php_5_3?I did wonder the same months ago, but noone seemed to care, and I had
no use for it myself so I never bothered merging it :)The functionality is rather handy (I think), I would +1 for its
addition to the 5.3 branch.
if someone commits it before alpha3 its fine by me.
regards,
Lukas Kahwe Smith
mls@pooteeweet.org
Hello,
2008/10/20 Lukas Kahwe Smith mls@pooteeweet.org:
On Mon, Oct 20, 2008 at 22:43, Steve Hanselman SteveH@brendata.co.uk
wrote:Can anybody suggest a reason why this has never moved from main to
php_5_2 or php_5_3?I did wonder the same months ago, but noone seemed to care, and I had
no use for it myself so I never bothered merging it :)The functionality is rather handy (I think), I would +1 for its addition
to the 5.3 branch.if someone commits it before alpha3 its fine by me.
Done!
I've added a test and it's failing in HEAD though. We need check it,
and to see what's the real behavior expected.
A notable difference between the HEAD and 5.x fgetcsv implementation,
is that in HEAD the delimiter, enclosure and escape can have more than
1 char. Then the following is valid:
// string input[, string delimiter[, string enclosure[, string escape]]]
var_dump(str_getcsv('<>foo++<><>[]<>bar<>', '[]', '<>', '++'));
Should we really accept that?
--
Regards,
Felipe Pena.