Quote:
Originally Posted by projectigi
yeah an articles covering:
would be nice =/
|
PHP Code:
function onCreated()
{
array = { "str", 2, "int", -1, "dex", 1, "luck", 0};
for( i = 0; i < 8; i += 2;)
echo( array.subarray( i, 2));
}
Outputs:
str,2
int,-1
dex,1
luck,0