|
@@ -71,7 +71,7 @@ class Weapp extends BaseModel
|
|
|
* @param unknown $param
|
|
|
*/
|
|
|
public function createQrcode($param) {
|
|
|
- //try {
|
|
|
+ try {
|
|
|
$checkpath_result = $this->checkPath($param['qrcode_path']);
|
|
|
if($checkpath_result["code"] != 0) return $checkpath_result;
|
|
|
|
|
@@ -87,15 +87,15 @@ class Weapp extends BaseModel
|
|
|
'page' => substr($param['page'], 1),
|
|
|
'width' => isset($param['width']) ? $param['width'] : 120
|
|
|
]);
|
|
|
- echo "<pre>";print_r($response);exit;
|
|
|
+ //echo "<pre>";print_r($response);exit;
|
|
|
if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
|
|
|
$filename = $param['qrcode_path'] . '/';
|
|
|
$filename .= $response->saveAs($param['qrcode_path'], $param['qrcode_name'] . '_' . $param['app_type'] . '.png');
|
|
|
return $this->success(['path' => $filename]);
|
|
|
}
|
|
|
- /* } catch (\Exception $e) {
|
|
|
+ } catch (\Exception $e) {
|
|
|
return $this->error('', $e->getMessage());
|
|
|
- }*/
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|