View Single Post
  #2  
Old 01-13-2013, 01:31 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Works fine for me, what are you trying to do?

PHP Code:
function onCreated() {
  
temp.a.add(1);
  echo(
temp.a);
  
temp.a.add(2);
  echo(
temp.a);
  
temp.a.addarray({3,4});
  echo(
temp.a);
  
temp.a.add({5,6});
  echo(
temp.a);
}

/* Output:

1,
1,2
1,2,3,4
1,2,3,4,"5,6"

*/ 
__________________
Quote:
Reply With Quote