[PHP-DEV] Hi again! . . .and file_get_contents() maxlen default value

2009-09-04 Thread Lars Torben Wilson
Hi all, I've been off the lists for a bit (6 or 7 years, it seems) so for anybody who remembers me, hi! . . .and for anybody who doesn't remember me, hi! I used to work quite a lot on the docs and even had a couple of small code commits to my credit. Anyway, I'm back. I've been getting back

RE: [PHP-DEV] shebang skipping in 5.3.0

2009-09-04 Thread Andi Gutmans
Shebang is for command line scripts (php-cli). It does not make sense to support it for Web server scripts. It just adds unnecessary code/complexity to that code base. Removing the support from php-cgi was really a remnant of the old days when cli and cgi were the same SAPI. I think we are better o

[PHP-DEV] SVN Account Request: diegolopes

2009-09-04 Thread Diego Lopes de Araujo
Translating the documentation -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Patch: FNV-1 support for ext/hash

2009-09-04 Thread Michael Maclean
Hi, Earlier on someone on IRC mentioned that ext/hash had no support for the FNV-1 hash function (http://en.wikipedia.org/wiki/Fowler-Noll-Vo_hash_function), so I decided to have a go at adding it. The result of this is the attached patch. Currently it only supports 32-bit and 64-bit versions. I've

[PHP-DEV] PHP 5.3.1RC1 Testing

2009-09-04 Thread Johannes Schlüter
The first release candidate of 5.3.1 was just released for testing and can be downloaded here: http://downloads.php.net/johannes/php-5.3.1RC1.tar.bz2 MD5 (php-5.3.1RC1.tar.bz2) = 33c56bca06d2ca93827b6e2e4c8776a2 http://downloads.php.net/johannes/php-5.3.1RC1.tar.gz MD5 (php-5.3.1RC1.tar.gz) = 7d

Re: [PHP-DEV] shebang skipping in 5.3.0

2009-09-04 Thread Joey Smith
I definitely had the wrong changeset - sorry, Nuno. :) Looks like maybe 273177 is the problem child. http://tinyurl.com/lewcft On Fri, Sep 04, 2009 at 09:25:52AM +0100, Scott MacVicar wrote: > > > On 4 Sep 2009, at 09:16, Joey Smith wrote: > >> I can understand not having the 'shebang skipping'

Re: [PHP-DEV] shebang skipping in 5.3.0

2009-09-04 Thread Pierre Joye
See #49182 Cheers, On Fri, Sep 4, 2009 at 10:25 AM, Scott MacVicar wrote: > What's the problem your having? The skip code is still there just in a > different bit. > > Scott > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > >

Re: [PHP-DEV] shebang skipping in 5.3.0

2009-09-04 Thread Scott MacVicar
On 4 Sep 2009, at 09:16, Joey Smith wrote: I can understand not having the 'shebang skipping' code in both the SAPI *and* the scanner, but we probably need to have it in at least ONE of them. :) Per his email[1] almost a year ago, Dmitry removed the shebang line check from sapi/cgi/cgi_main.

Re: [PHP-DEV] shebang skipping in 5.3.0

2009-09-04 Thread Joey Smith
On Fri, Sep 04, 2009 at 02:16:40AM -0600, Joey Smith wrote: > Per his email[1] almost a year ago, Dmitry removed the [1] should have been: http://tinyurl.com/kwne3v -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] shebang skipping in 5.3.0

2009-09-04 Thread Joey Smith
I can understand not having the 'shebang skipping' code in both the SAPI *and* the scanner, but we probably need to have it in at least ONE of them. :) Per his email[1] almost a year ago, Dmitry removed the shebang line check from sapi/cgi/cgi_main.c in changeset 264153, saying: Removed sh