My main objectives:
1. have all parameters optional 2. have a mixed order for the paramaters
Other languages seem to do this well (Ruby, or perhaps RubyOnRails seems good at it), but in PHP I can only see a few options... I'm hoping someone might offer a few more ideas.
<? $params = array('a'=>'123','b'=>'456'); echo doStuff($params); ?> <?=doStuff(array('a'=>'123','b'=>'456'))?> <?=doStuff('a=123','b=456')?> <?=doStuff('a','123','b','456'); ?> <?=doStuff("a='123' b='456'")?>
So, is that it? Have I thought of all possible options?
--- Justin French http://indent.com.au
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php