Quote:
Originally Posted by Mark Sir Link
I guess I should have been more specific, if you store an array of integers it will truncate the rest.
|
That's why you do
PHP Code:
p.attr[17] = @{1, 5, 8};
instead of
PHP Code:
p.attr[17] = {1, 5, 8};
and then reads it as a tokenized string on clientside to pretend that it is an array.