ACC SHELL
<?php
/**
* This file is part of the Nette Framework (http://nette.org)
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
* @package Nette
*/
/**
* Provides objects to work as array.
*
* @author David Grudl
* @package Nette
*/
class NArrayHash extends stdClass implements ArrayAccess, Countable, IteratorAggregate
{
/**
* @param array to wrap
* @param bool
* @return NArrayHash
*/
public static function from($arr, $recursive = TRUE)
{
$obj = new self;
foreach ($arr as $key => $value) {
if ($recursive && is_array($value)) {
$obj->$key = self::from($value, TRUE);
} else {
$obj->$key = $value;
}
}
return $obj;
}
/**
* Returns an iterator over all items.
* @return RecursiveArrayIterator
*/
public function getIterator()
{
return new RecursiveArrayIterator($this);
}
/**
* Returns items count.
* @return int
*/
public function count()
{
return count((array) $this);
}
/**
* Replaces or appends a item.
* @return void
*/
public function offsetSet($key, $value)
{
if (!is_scalar($key)) { // prevents NULL
throw new InvalidArgumentException("Key must be either a string or an integer, " . gettype($key) ." given.");
}
$this->$key = $value;
}
/**
* Returns a item.
* @return mixed
*/
public function offsetGet($key)
{
return $this->$key;
}
/**
* Determines whether a item exists.
* @return bool
*/
public function offsetExists($key)
{
return isset($this->$key);
}
/**
* Removes the element from this list.
* @return void
*/
public function offsetUnset($key)
{
unset($this->$key);
}
}
ACC SHELL 2018