View Single Post
  #27  
Old 05-03-2008, 11:58 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Objects and functions already are refs, and you can pass arrays by ref using link().
PHP Code:
function onCreated() {
  
temp.array = {"lol""pancake"};
  
thefunc(temp.array.link());
}
function 
thefunc(array) {
  array[
1] @= "lol";

Though I think its silly that it only works for arrays and not strings or numbers.
__________________
Reply With Quote