Hi,

function myFunction($some_vars, &$max, &$some_value)
{
 $max=count($some_vars);
 $some_value=($max/2);
 //return true;
}

Rudolf Visagie
Principal Software Developer
Digital Healthcare Solutions
<mailto:[EMAIL PROTECTED]>
Tel: + 27 011 2655478
Cell: + 27 82 895 1598
 

-----Original Message-----
From: W. Enserink [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 28, 2002 10:02 AM
To: [EMAIL PROTECTED]
Subject: [PHP] function return


Hi all,


I have a Q about functions. My function should return 2 values. What syntax
should I use and how do I call these values outside the function? Are these
values returned as en array or something?


this is what I have now,
-----------------------------
function myFunction($some_vars)
{
 $max=count($some_vars);
 $some_value=($max/2);
 return($some_value && $max);
}

$var1=should be the value of  $some_value
$var2=should be the value of $max


thx. Wilbert

------------------------- 
Pas de Deux 
Van Mierisstraat 25 
2526 NM Den Haag 
tel 070 4450855 
fax 070 4450852 
http://www.pdd.nl 
[EMAIL PROTECTED] 
-------------------------

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

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

Reply via email to