Example #1
0
 public function __construct()
 {
     srand(0);
     $n = 0;
     while ($n++ < 99) {
         $this->data[] = rand();
     }
     parent::__construct();
 }
 public function __construct()
 {
     srand(0);
     $n = 0;
     while ($n++ < 16) {
         $this->data[] = array(rand(), rand());
     }
     parent::__construct();
 }