Re: [PHP-DEV] call_builtin_function_array() possible?

2001-01-10 Thread Cynic
Well, this would be probably completely useless (at least I can't think of a meaningful use of this right now), but... is there a reason this can't be implemented in PHP? I know, time is a very precious commodity, and I wouldn't ask (or suggest) for an implementation of this if it would

[PHP-DEV] Re: ++$i++ (was Re: [PHP-DEV] call_builtin_function_array() possible?)

2001-01-10 Thread Andrei Zmievski
On Wed, 10 Jan 2001, Cynic wrote: I recently needed to process every other element of a numerically indexed array. for( $i = 0 ; $i count( $a ) ; $x = $a[ ++$i++ ] ) would have saved me one statement. I had to use for( $i = 0 ; $i count( $a ) ; $x = $a[ $i++ ] , $i++ ) I know, this