ID: 14513
Updated by: zak
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Feature/Change Request
Operating System: 
PHP Version: 4.1.0
New Comment:

Hey Daniel,

Check out the archived discussions in the zend engine 2 
mailing list regarding this topic. :)


Previous Comments:
------------------------------------------------------------------------

[2001-12-14 06:39:22] [EMAIL PROTECTED]

I was thinking about a new feature. Fetching multiple elements would be a cool 
feature, wouldn't it? This would look like this;

  $array[0,1];

or

  $array['name','address'];

and would allow constructions like this:

for($i=0;$i<count($array);$i+=2) {
  list($odd,$even)=$array[$i,$i+1];
}

instead of:

for($i=0;$i<count($array);$i+=2) {
  $odd=$array[$i];
  $even=$array[$i+1];
}

This syntactically follows the specification of using the "comma" to provide multiple 
elements/indices, such as it's already the case for functions. Therefore adding this 
feature wouldn't deteriorate the code-readability.

Also, I cannot think of any way using this feature to encourage bad coding practices.

$array from the above example could be a datafile from a guestbook where always a pair 
of lines represent "username" and "comment" (instead of using "|" or anything else as 
a delimitor).

Your comments?

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=14513&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to