Is it possible in php4 to retrieve an
array value from an expression that
returns an array without first storing
the resultant array in a temporary variable?

For example, I would like to do something like this:
echo (posix_uname())["nodename"];

Instead of:
$tmp = posix_uname();
echo $tmp["nodename"];

Thanks, Bob

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to