On Monday 18 February 2008, Teck wrote:
> Hi,
>
>
> Is it possible to "return" more than one values in PHP?
>
> return $x;
> return $y;
>
> They don't work for me.
>
> -T

A function always returns a single value.  That value can be an array.

function foo() {
  return array(1, 2);
}

list($a, $b) = foo();

-- 
Larry Garfield                  AIM: LOLG42
[EMAIL PROTECTED]               ICQ: 6817012

"If nature has made any one thing less susceptible than all others of 
exclusive property, it is the action of the thinking power called an idea, 
which an individual may exclusively possess as long as he keeps it to 
himself; but the moment it is divulged, it forces itself into the possession 
of every one, and the receiver cannot dispossess himself of it."  -- Thomas 
Jefferson

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

Reply via email to