Casey wrote:

I don't know why I'm continuing this... but for the truly crazy:
        function w(&$t) {
                $t = array('f' => '...');
                return 't';
        }
        
        echo ${w($t)}['f'];


addictive isn't it!

casey, I truelly believe that's as short as it can get - and a great bit of code reduction - most impressed :D

concider: w()['f']
the only additions are a ${} wrapper!

nice

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

Reply via email to