I understand celltrie and cellarray this way, obviously the way to code it is different.
PHP Code:
// Cell arrays
CellArray[0] = 52
CellArray[1] = 64
CellArray[2] = 15
// Cell Tries
CellTrie["somestring"] = 12
CellTrie["somestringtwo"] = 456
CellTrie["anotherstring"] = 23
__________________