22 function __construct($text =
"", $picture =
"", $identifier =
"")
24 if (strlen($identifier) == 0)
26 mt_srand((
double)microtime()*1000000);
27 $identifier = mt_rand(1, 100000);
29 $this->arrData = array(
31 'picture' => $picture,
32 'identifier' => $identifier
45 if (strlen($this->arrData[$value]))
47 return $this->arrData[$value];
55 return $this->arrData[$value];
66 public function __set($key, $value)
73 $this->arrData[$key] = $value;