Beispiel #1
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->keyFile = md5(rand() . microtime());
     $characters = 'abcdef0123456789';
     $this->hash = '';
     for ($i = 0; $i < 60; $i++) {
         $this->hash .= $characters[rand(0, strlen($characters) - 1)];
     }
 }
Beispiel #2
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
 }