12-17-2007, 05:43 PM
|
#4 (permalink)
|
|
The Wanderer
Join Date: Oct 2007
Posts: 21
Thanks: 1
|
Quote:
Originally Posted by Tanax
But then every thread id and etc, will be on the same array..index or w.e it's called :S
|
Tanax, that is incorrect. From the php manual:
PHP Code:
<?php $arr = array(5 => 1, 12 => 2);
$arr[] = 56; // This is the same as $arr[13] = 56; // at this point of the script
$arr["x"] = 42; // This adds a new element to // the array with key "x" unset($arr[5]); // This removes the element from the array
unset($arr); // This deletes the whole array ?>
As you can see, with the square-bracket syntax, each key value will be different; it will be incremented one above the previous value.
|
|
|
|