[PHP-DEV] Requesting RFC karma for your wiki account.

2021-02-10 Thread Russell Stuart
tly. The branch is here: https://github.com/rstuart/php-src/tree/0044.1-add-pdo-firebird-getcolumnmeta.patch If I get RFC karma, I will create an RFC and a pull request for it. -- Regards, Russell Stuart -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: https://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] Keywords as identifiers

2013-09-17 Thread Stuart Langley
Perhaps I'm missing something completely obvious. To be honest, looking at the example in the RFC, being able to define a member function 'new' on a class that completely changes the semantics of the new operator is a great example of why you would not want this feature. Just my $0.02.

Re: [PHP-DEV] idea: implement a Comparable interface

2013-05-07 Thread Stuart Langley
Classes without the ability to overload the comparison operator could be considered kinda useless as well. On Tue, May 7, 2013 at 11:11 AM, Daniel Ribeiro wrote: > Its kinda useless feature for PHP. > > > Daniel Ribeiro Gomes Pereira > Twitter | > Facebook

Re: [PHP-DEV] A better error handling approach.

2013-05-02 Thread Stuart Langley
So is the feature you're describing is tuples and a use case of that feature is an easier way to do error handling? On Fri, May 3, 2013 at 8:00 AM, Adam Jon Richardson wrote: > PHP currently has two separate approaches to handling errors: > - Errors > - Exceptions > > Both have their issues. > >

Re: [PHP-DEV] PHP class files without

2012-04-07 Thread Stuart Dallas
n either way (: If accidental newlines above the . -Stuart -- Stuart Dallas 3ft9 Ltd http://3ft9.com/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Patch for bug #60075

2012-03-05 Thread Stuart Dallas
Hi all, I've made a patch for #60075 because it's a feature I'll find very useful. It's my first patch so it'd be great to get some feedback. https://bugs.php.net/bug.php?id=60075 Thanks. -Stuart -- Stuart Dallas 3ft9 Ltd http://3ft9.com/

Re: [PHP-DEV] Class names (with regard to autoload)

2009-02-26 Thread Stuart
be kind enough to > direct me to the part(s) of the engine I'd need to look at. > The concatenation operator (.) is not valid in a class name. Use an underscore and you'll be able to get the behaviour you want. -Stuart -- http://stut.net/

Re: [PHP-DEV] [PATCH] #29416 - ob_include

2004-09-02 Thread Stuart Dallas
o be honest I wasn't really expecting much more. I made a patch that did what I wanted (I don't need it in a function... yet) and thought I'l throw it out there. In case anyone cares I've put it up here: http://dev.stut.net/php/eval_file_get_output.patch I appreciate your comments and those from Derick. -- Stuart -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [PATCH] #29416 - ob_include

2004-09-01 Thread Stuart Dallas
36 - @@ -58,6 +58,7 @@ PHP_FUNCTION(ob_get_status); PHP_FUNCTION(ob_implicit_flush); PHP_FUNCTION(ob_list_handlers); +PHP_FUNCTION(eval_file_get_output); typedef struct _php_ob_buffer { char *buffer; -- Stuart -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] [PATCH] #29416 - ob_include

2004-09-01 Thread Stuart Dallas
than what it was for. I have implemented it as eval_file_get_output which I feel is a better description of its purpose. The requester suggests require and _once variations but those make little sense to me so I haven't implemented those. -- Stuart -- PHP Internals - PHP Runtime Developme