42         function __construct($text = 
"", $picture = 
"", $identifier = 
"")
 
   44                 if (strlen($identifier) == 0)
 
   46                         mt_srand((
double)microtime()*1000000);
 
   47                         $identifier = mt_rand(1, 100000);
 
   49                 $this->arrData = array(
 
   51                         'picture' => $picture,
 
   52                         'identifier' => $identifier
 
   65                                 if (strlen($this->arrData[$value]))
 
   67                                         return $this->arrData[$value];
 
   75                                 return $this->arrData[$value];
 
   86         public function __set($key, $value)
 
   93                                 $this->arrData[$key] = $value;