芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/portpulselogistics.com/Modules/Cargo/Http/Helpers/MissionPRNG.php
key)->count(); return ($count > 0)?true:false; } private function generatePRNG() { $this->min = 100000; $this->max = 999999; return mt_rand($this->min,$this->max); } private function createKey() { $this->key = $this->generatePRNG(); $exist = $this->checkExist(); return (!$exist)?$this->key:$this->createKey(); } static public function get() { $instanse = new MissionPRNG; return $instanse->createKey(); } }