Jochem Maas wrote:
> this one should be easy:
> 
> function work($v) { echo "$v,"; }
> foreach(array_merge(range(9,12),range(1,5)) as $ing)
>       work($ing);
> 


<dolly>Workin' 9 til' 5</dolly>


On a similar theme:

function jack($all)
{
  static int $play = 0;
  if ($all == 'work' && !$play)
    return 'dull boy!';
  $play++;
}

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

Reply via email to