AppserverIo\Appserver\PersistenceContainer\StatefulSessionBeanMap::toIndexedArray PHP Метод

toIndexedArray() публичный Метод

This method returns the internal array with the keys and the related values.
См. также: AppserverIo\Collections\Map::toIndexedArray()
public toIndexedArray ( ) : array
Результат array Holds the array with keys and values
    public function toIndexedArray()
    {
        $array = array();
        foreach ($this->items as $key => $item) {
            $array[$key] = $item;
        }
        return $array;
    }