Re: [PHP-DEV] Notes from the PDM in Chicago

2009-06-05 Thread Keisial
Elizabeth M Smith wrote: > yes Hannes - interfaces for userland implemented streams would help > people trying to figure out if they have all the methods they need for a > particular stream type (SeekableStream et al) - this would be backward > compat (you wouldn't HAVE to implement the interfaces

Re: [PHP-DEV] set_magic_quotes_runtime is still E_DEPRECATED

2009-06-16 Thread Keisial
Pierre Joye wrote: > On Tue, Jun 16, 2009 at 12:33 PM, Hannes > Magnusson wrote: > >>> Because in PHP 6 (or next) the function "set_magic_quotes_runtime()" will be >>> removed, so calling it without checking ini_get() will trigger a fatal >>> error, no ? >>> >> And there is the problem. >

Re: [PHP-DEV] seems 5.3RC3 is too unstable

2009-06-17 Thread Keisial
I tried compiling 5.3RC3 on SunOS (i386 32bit) and it seem to compile fine but _something_ is segfaulting. $ rm -rf php-5.3.0RC3 && tar xf php-5.3.0RC3.tar && cd php-5.3.0RC3 && ./configure --with-libxml-dir=/opt/csw/ && make; ls -l core A core file is generated. However, it isn't when doing a m

Re: [PHP-DEV] PHP 5.3.0RC4

2009-06-20 Thread Keisial
Lester Caine wrote: > Lukas Kahwe Smith wrote: >> Some additional links to get started: >> http://cvs.php.net/viewvc.cgi/php-src/NEWS?view=markup&pathrev=PHP_5_3 >> http://cvs.php.net/viewvc.cgi/php-src/UPGRADING?revision=PHP_5_3 > > While I know that ... > - All ereg functions are deprecated and e

Re: [PHP-DEV] shebang skipping in 5.3.0

2009-09-05 Thread Keisial
Andi Gutmans wrote: > 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 S

Re: [PHP-DEV] shebang skipping in 5.3.0

2009-09-06 Thread Keisial
Andi Gutmans wrote: > If this is indeed a use-case for CGI then I think it's a valid argument > and we are probably better off supporting it. I did not remember shebang > works for real CGI. > There are still plenty of use-cases for running CGI (as opposed to > FastCGI) in the industry. > Question

Re: [PHP-DEV] Detecting share violations over cifs with PHP? Feature request

2009-09-17 Thread Keisial
Ian Tighe wrote: > Hi. I hope this has been sent to the right place. > I am using files that are mount.cif share files. My client is a samba linux > box but acting as a client over cifs to an XP box (several in fact). > I am descending the share recursively with opendir and readdir detecting > f

Re: [PHP-DEV] Detecting share violations over cifs with PHP? Feature request

2009-09-17 Thread Keisial
Ian Tighe `wrote: > Hi , > I am using readdir with a view to selecting files for opening and > reading or just taking a stat of them. I am doing this recursively. I > test the output from readdir to see if its a file or dir or link etc > and this works well. This suddenly changes though and an item

Re: [PHP-DEV] Where is the EG macro defined?

2009-10-28 Thread Keisial
Mark Skilbeck wrote: > I'd like to check out how the EG macro (I assume it's a macro) works. > However, I cannot find it :( > Zend/zend_globals_macros.h EG means executor_globals. This macro provides access to the value named in the parameter. If running without multi-thread support, it's just a c

Re: [PHP-DEV] PHP 5.3.1 reference parameter regression

2009-12-12 Thread Keisial
Tim Starling wrote: > Since 5.3.1 it's impossible to have a reference parameter passed to a > __call() function. > This change causes bugs in MediaWiki, where an attempt by a proxy object > to pass a call through to a function that accepts reference parameters > will always fail, due to the exace

Re: [PHP-DEV] Implementing fdopen in PHP

2010-03-14 Thread Keisial
Dennis Hotson wrote: Hi all, It's my first post, so go easy on me. :-) I'm trying to implement PHP support for github's erlang RPC server called ernie. So basically I've been porting the following ruby code to PHP: http://github.com/mojombo/ernie/blob/master/lib/ernie.rb The problem I'm having

Re: [PHP-DEV] [RFC] Removal of deprecated features

2010-04-09 Thread Keisial
Kalle Sommer Nielsen wrote: > enable_dl > - Is this really worth keeping, since dl() was disabled on almost all > SAPIs except for CLI/CGI/Embed? > Although it is not the most widespread use of PHP, people using things like PHP-GTK probably take advantage of it. -- PHP Internals - PHP Runti

Re: [PHP-DEV] Re: [PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/ext/date/php_date.c trunk/ext/date/php_date.c

2011-01-25 Thread Keisial
Pierre Joye wrote: > On Tue, Jan 25, 2011 at 4:10 PM, Derick Rethans wrote: >> On Tue, 25 Jan 2011, Pierre Joye wrote: >> >>> Now, as this extension is in the core and had a couple of issues that >>> need to be fixed and without affecting the behavior, then I will fix >>> them. Features addition o