Re: [PHP-DEV] Call closure stored as object property directly without use of temporary variable

2012-12-09 Thread Stas Malyshev
Hi! > As it stands now, calling a method can mean two different things: > calling the method directly, or handling the method invocation within > __call(). Checking for a method first, a closure instance next, and then > falling through to __call() seems like it would have been a reasonable > appr

[PHP-DEV] PHP mentioned in Master Thesis on FLOSS development processes

2012-12-09 Thread Sebastian Bergmann
Pages 41-47 (52-58) of "Typical Development Processes of Free and Open Source Software Projects" [1] could be of interest to the members of this list. -- [1] http://www.dgsiegel.net/writing/2012_master_thesis.pdf -- Sebastian BergmannCo-Founder and Principal Consultant h

Re: [PHP-DEV] PHP mentioned in Master Thesis on FLOSS development processes

2012-12-09 Thread Sherif Ramadan
Who's the author? I didn't see it listed anywhere in the thesis. On Sun, Dec 9, 2012 at 7:02 AM, Sebastian Bergmann wrote: > Pages 41-47 (52-58) of "Typical Development Processes of Free and Open > Source Software Projects" [1] could be of interest to the members of > this list. > > -- > [1

Re: [PHP-DEV] PHP mentioned in Master Thesis on FLOSS development processes

2012-12-09 Thread Lester Caine
Sherif Ramadan wrote: Who's the author? I didn't see it listed anywhere in the thesis. Daniel Siegel ? http://www.dgsiegel.net/ -- Lester Caine - G8HFL - Contact - http://lsces.co.uk/wiki/?page=contact L.S.Caine Electronic Services - http://lsces.co.uk EnquirySolve

Re: [PHP-DEV] PHP mentioned in Master Thesis on FLOSS development processes

2012-12-09 Thread Sherif Ramadan
On Sun, Dec 9, 2012 at 8:12 AM, Lester Caine wrote: > Sherif Ramadan wrote: > >> Who's the author? I didn't see it listed anywhere in the thesis. >> > > Daniel Siegel ? > http://www.dgsiegel.net/ > > -- > Lester Caine - G8HFL > - > Contact - > http://lsces.co.uk/wiki/

Re: [PHP-DEV] PHP mentioned in Master Thesis on FLOSS development processes

2012-12-09 Thread Lester Caine
Sherif Ramadan wrote: > wrote: Sherif Ramadan wrote: Who's the author? I didn't see it listed anywhere in the thesis. Daniel Siegel ? http://www.dgsiegel.net/ Good catch. Apparently I'm not fully awake yet and this glorious Sunday morning. Actu

Re: [PHP-DEV] Git Access

2012-12-09 Thread Sara Golemon
Yeah, a subsequent push picked it up. Don't think we need to worry about cronning it, but I'll add a note to the git workflow page mentioning how recovery works in this situation for future reference. On Sat, Dec 8, 2012 at 7:28 AM, David Soria Parra wrote: > On 2012-12-05, Sara Golemon wrote:

Re: [PHP-DEV] a simple question about PHP extension: using user function in my own extension

2012-12-09 Thread Johannes Schlüter
Amir wrote: >it is no mater using mysql function or other function. I want to use >both >as function in my extension. It matters as calling userspace functions is in at least 90% of the cases the wrong approach and there are better ones. The better approach depends on the goal. (The only tim