|
Posted by Michael Fesser on 01/07/08 09:34
..oO(jodleren)
>I have a function, a part of my code which I can use as a function. It
>will return 2 arrays, and I am wondering what way to do so. Both
>arrays hold strings, there are no special keys.
>
>1) setting the arrays as globals
No.
>2) returnin an array of arrays
Possible.
>3) returning a large array with a known marker to indicate when the
>2nd part starts.
No.
>Any other ideas?
4) Arguments passed by reference:
function foo(&$arg1, &$arg2) {
$arg1 = array(1, 2, 3);
$arg2 = array(4, 5, 6);
}
Micha
Navigation:
[Reply to this message]
|