Remove Google
[infodrom.org/infocon.infodrom.org] / class / storage.class.php
1 <?php
2
3 class Storage extends stdClass {
4   public function __construct($attributes=false)
5   {
6     if ($attributes !== false && is_array($attributes))
7       foreach ($attributes as $k => $v)
8         $this->$k = $v;
9   }
10 }