I wonder if it's possible to append an array to an array without looping through individual records?
Specifically, if a function returns an array such as:
$varname = function(foo);
how can I append the results of function(bar) to $varname without overwriting the results of function(foo)?
Any suggestions would be greatly appreciated.
Specifically, if a function returns an array such as:
$varname = function(foo);
how can I append the results of function(bar) to $varname without overwriting the results of function(foo)?
Any suggestions would be greatly appreciated.