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

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

The keys are lost in the array.
public toArray ( ) : array
Результат array Holds an array with the items of the Dictionary
    public function toArray()
    {
        $array = array();
        foreach ($this->items as $item) {
            $array[] = $item;
        }
        return $array;
    }