|
Posted by Rich Kucera on 11/15/05 17:40
Why not? You never did this: $x = f1( f2( $y ) ); ?
For example:
$dir_path_component = array_pop( split('[/]',$dir) );
This syntax seems second nature to me. It is now broken.
You now have to inject a $foo variable into your syntax:
$dir_path_component = array_pop( $foo = split('[/]',$dir) );
Seems like other languages have solved whatever ill-effects result from
passing of function results to another function.
--
http://groups.yahoo.com/group/heuristic/
Navigation:
[Reply to this message]
|