Zitat von Dmitry Shirokov <[EMAIL PROTECTED]>:

Hey guys.

What are you thinking about adding this feature:

<?php
function foo()
{
   return array(1,2,3,4,5,6);
}

echo foo()[4];  //  <---- it that
// or may be (foo())[4] ?


// instead of
$var = foo();
echo $var[4];
?>

Yes, please, that would be most important shorthand functionality after dereferencing.

Jan.

--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to