예제 #1
0
 public static function getInstance()
 {
     if (!self::$_instance instanceof medoo) {
         self::$_instance = new \medoo(\AliceSPA\Helper\Config::getConfig()['medooConfig']);
     }
     return self::$_instance;
 }
예제 #2
0
 public function generate()
 {
     $config = configHelper::getConfig()['securimageConfig'];
     $si = new \Securimage($config);
     //securimage write the image data to output buffer, we should get it and clean output buffer and encode image data to a base64 string.
     $si->show();
     $imageData = ob_get_contents();
     ob_get_clean();
     $imageStr = base64_encode($imageData);
     $imageCode = $si->getCode(false, true);
     return ['data' => $imageStr, 'code' => $imageCode];
 }