Returning 2 values from a function | PHP

Simer283

New Member
Is it possible for you to return two values when calling a function that would output the values, for example, I have this:\[code\]<?phpfunction ids($uid = 0, $sid = ''){ $uid = 1; $sid = md5(time()); return $uid; return $sid; }echo ids();?>\[/code\]Which will output \[code\]1\[/code\], I want to chose what to ouput, e.g. \[code\]ids($sid)\[/code\], but it will still output \[code\]1\[/code\].Is it even possible?
 
Back
Top