待发短信

在线客服
产品支持 短信宝客服
合作渠道 渠道合作
服务咨询

4001-021-502

工作时间

9:00-21:00

WSTshop电子商务系统新增短信宝短信接口

WSTShop电子商务系统是一款基于PHP+MySQL开发的单商家电子商务系统,主要包括基础管理,文章管理,系统管理,会员管理,商品管理,地区管理,订单管理,支付管理,运营管理,财务管理等功能。小编对于这套系统还是比较了解的,今天小编就以替换短信接口为例告诉大家如何进行二次开发,我们讲解的是WSTshop_1.5.1版本,使用的短信接口是我们短信宝短信群发平台的接口,我们短信宝短信群发平台非常稳定,发送速度快,注册就送测试短信,推荐大家使用。

首先我们打开项目\wstshop\admin\view\sysconfigs下的config1.html文件,替换短信配置代码。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<div id="wst-tab-1" title="服务器设置" class='wst-tab'>
<table class='wst-form wst-box-top'>
<tr>
 <td colspan='2' class='head-ititle'>邮件服务器设置</td>
</tr>
<tr>
 <th width='150'>SMTP服务器:</th>
 <td><input type="text" id='mailSmtp' class='ipt' maxLength='100' value='{$object["mailSmtp"]}'/></td>
</tr>
<tr>
 <th>SMTP端口:</th>
 <td><input type="text" id='mailPort' class='ipt' maxLength='10' value='{$object["mailPort"]}'/></td>
</tr>
<tr>
 <th>是否验证SMTP:</th>
 <td>
 <label>
     <input type='radio' id='mailAuth1' name='mailAuth' class='ipt' value='1' {if $object['mailAuth']==1}checked{/if}/>是
 </label>
 <label>
     <input type='radio' id='mailAuth0' name='mailAuth' class='ipt' value='0' {if $object['mailAuth']==0}checked{/if}/>否
 </label>
 </td>
</tr>
<tr>
 <th>SMTP发件人邮箱:</th>
 <td><input type="text" id='mailAddress' class='ipt' value='{$object["mailAddress"]}' maxLength='100'/></td>
</tr>
<tr>
 <th>SMTP登录账号:</th>
 <td><input type="text" id='mailUserName' class='ipt' value='{$object["mailUserName"]}' maxLength='100'/></td>
</tr>
<tr>
 <th>SMTP登录密码:</th>
 <td><input type="text" id='mailPassword' class='ipt' value='{$object["mailPassword"]}' maxLength='100'/></td>
</tr>
<tr>
 <th>发件人名称:</th>
 <td><input type="text" id='mailSendTitle' class='ipt' value='{$object["mailSendTitle"]}' maxLength='100'/></td>
</tr>
<tr>
 <td colspan='2' class='head-ititle'>短信服务器设置</td>
</tr>
<tr>
 <th>开启手机验证:</th>
 <td>
 <label>
     <input type='radio' id='smsOpen1' name='smsOpen' class='ipt' value='1' {if $object['smsOpen']==1}checked{/if}/>是
 </label>
 <label>
     <input type='radio' id='smsOpen0' name='smsOpen' class='ipt' value='0' {if $object['smsOpen']==0}checked{/if}/>否
 </label>
 </td>
</tr>
<tr>
 <th>短信宝用户名:</th>
 <td><input type="text" id='smsKey' class='ipt' value="{$object['smsKey']}" maxLength='100'/>&nbsp;&nbsp;还没有帐号?点击这里进行<a target='_blank' href='http://www.smsbao.com/reg'>注册</a></td>
</tr>
<tr>
 <th>短信宝密码:</th>
 <td><input type="text" id='smsPass' class='ipt' value="{$object['smsPass']}" maxLength='100'/></td>
</tr>
<tr>
 <th>号码每日发送数:</th>
 <td><input type="text" id='smsLimit' class='ipt' value="{$object['smsLimit']}" maxLength='100'/></td>
</tr>
<tr>
 <th>开启短信发送验证码:</th>
 <td>
 <label>
     <input type='radio' id='smsVerfy1' class='ipt' name='smsVerfy' value='1' {if $object['smsVerfy']==1}checked{/if}/>是
 </label>
 <label>
     <input type='radio' id='smsVerfy0' class='ipt' name='smsVerfy' value='0' {if $object['smsVerfy']==0}checked{/if}/>否
 </label>
 </td>
</tr>
<tr>    {if ($grant)}
 <td colspan='2' align='center'>
    <input type="button" value="保存" class='btn btn-blue' onclick='javascript:edit()'/>
    <input type="reset" class='btn' value="重置" />
 </td>
 {/if}
</tr>
</table>
</div>

接着我们替换项目\wstshop\common\common下的function.php文件,代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
<?php
use think\Db;
/**
 * 生成验证码
 */
function WSTVerify(){
    $Verify new \verify\Verify();
    $Verify->length   = 4;
    $Verify->entry();
}
/**
 * 核对验证码
 */
function WSTVerifyCheck($code){
    $verify new \verify\Verify();
    return $verify->check($code);
}
/**
 * 生成数据返回值
 */
function WSTReturn($msg,$status = -1,$data = []){
    $rs = ['status'=>$status,'msg'=>$msg];
    if(!empty($data))$rs['data'] = $data;
    return $rs;
}
 
/**
 * 检测字符串不否包含
 * @param $srcword 被检测的字符串
 * @param $filterWords 禁用使用的字符串列表
 * @return boolean true-检测到,false-未检测到
 */
function WSTCheckFilterWords($srcword,$filterWords){
    $flag = true;
    if($filterWords!=""){
        $filterWords str_replace(",",",",$filterWords);
        $words explode(",",$filterWords);
        for($i=0;$i<count($words);$i++){
            if(strpos($srcword,$words[$i]) !== false){
                $flag = false;
                break;
            }
        }
    }
    return $flag;
}
 
/**
 * 中国网建短信服务商
 * @param string $phoneNumer  手机号码
 * @param string $content     短信内容
 */
function WSTSendSMS($phoneNumer,$content){
    $url 'http://utf8.sms.webchinese.cn/?Uid='.WSTConf("CONF.smsKey").'&Key='.WSTConf("CONF.smsPass").'&smsMob='.$phoneNumer.'&smsText='.$content;
    $ch=curl_init($url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//设置否输出到页面
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30 ); //设置连接等待时间
    curl_setopt($ch, CURLOPT_ENCODING, "gzip" );
    $data=curl_exec($ch);
    curl_close($ch);
    return $data;
}
 
/**
 * 短信宝短信服务商
 * @param string $mobile  手机号码
 * @param string $content     短信内容
 */
function SmsbaoSendSMS($mobile,$content){
    $url 'http://api.smsbao.com/sms?u='.WSTConf("CONF.smsKey").'&p='.md5(WSTConf("CONF.smsPass")).'&m='.$mobile.'&c='.$content;
 
        if (function_exists('file_get_contents')) {
            $ret file_get_contents($url);
        }else{
            $ch=curl_init($url);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//设置否输出到页面
            curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30 ); //设置连接等待时间
            curl_setopt($ch, CURLOPT_ENCODING, "gzip" );
            $ret=curl_exec($ch);
            curl_close($ch);
        }
        return $ret;
}
 
 
/**
 * 获取指定的全局配置
 */
function WSTConf($key,$v ''){
    if(is_null($v)){
        if(array_key_exists('WSTSHOPCONF',$GLOBALS) && array_key_exists($key,$GLOBALS['WSTSHOPCONF'])){
            unset($GLOBALS['WSTSHOPCONF'][$key]);
        }
    }else if($v === ''){
        if(array_key_exists('WSTSHOPCONF',$GLOBALS)){
            $conf $GLOBALS['WSTSHOPCONF'];
            $ks explode(".",$key);
            for($i=0,$k=count($ks);$i<$k;$i++){
                if(array_key_exists($ks[$i],$conf)){
                    $conf $conf[$ks[$i]];
                }else{
                    return null;
                }
            }
            return $conf;
        }
    }else{
        return $GLOBALS['WSTSHOPCONF'][$key] = $v;
    }
    return null;
}
 
//php获取中文字符拼音首字母
function WSTGetFirstCharter($str){
    if(empty($str)){
        return '';
    }
    $fchar=ord($str{0});
    if($fchar>=ord('A')&&$fchar<=ord('z')) return strtoupper($str{0});
    $s1=iconv('UTF-8','gb2312',$str);
    $s2=iconv('gb2312','UTF-8',$s1);
    $s=$s2==$str?$s1:$str;
    if(empty($s{1})){
        return '';
    }
    $asc=ord($s{0})*256+ord($s{1})-65536;
    if($asc>=-20319 && $asc<=-20284) return 'A';
    if($asc>=-20283 && $asc<=-19776) return 'B';
    if($asc>=-19775 && $asc<=-19219) return 'C';
    if($asc>=-19218 && $asc<=-18711) return 'D';
    if($asc>=-18710 && $asc<=-18527) return 'E';
    if($asc>=-18526 && $asc<=-18240) return 'F';
    if($asc>=-18239 && $asc<=-17923) return 'G';
    if($asc>=-17922 && $asc<=-17418) return 'H';
    if($asc>=-17417 && $asc<=-16475) return 'J';
    if($asc>=-16474 && $asc<=-16213) return 'K';
    if($asc>=-16212 && $asc<=-15641) return 'L';
    if($asc>=-15640 && $asc<=-15166) return 'M';
    if($asc>=-15165 && $asc<=-14923) return 'N';
    if($asc>=-14922 && $asc<=-14915) return 'O';
    if($asc>=-14914 && $asc<=-14631) return 'P';
    if($asc>=-14630 && $asc<=-14150) return 'Q';
    if($asc>=-14149 && $asc<=-14091) return 'R';
    if($asc>=-14090 && $asc<=-13319) return 'S';
    if($asc>=-13318 && $asc<=-12839) return 'T';
    if($asc>=-12838 && $asc<=-12557) return 'W';
    if($asc>=-12556 && $asc<=-11848) return 'X';
    if($asc>=-11847 && $asc<=-11056) return 'Y';
    if($asc>=-11055 && $asc<=-10247) return 'Z';
    return null;
}
 
/**
 * 设置当前页面对象
 * @param int 0-用户  1-商家
 */
function WSTLoginTarget($target = 0){
    $WST_USER = session('WST_USER');
    $WST_USER['loginTarget'] = $target;
    session('WST_USER',$WST_USER);
}
/**
 * 邮件发送函数
 * @param string to      要发送的邮箱地址
 * @param string subject 邮件标题
 * @param string content 邮件内容
 * @return array
 */
function WSTSendMail($to$subject$content) {
    $mail new \phpmailer\phpmailer();
    // 装配邮件服务器
    $mail->IsSMTP();
    $mail->SMTPDebug = 0;
    $mail->Host = WSTConf("CONF.mailSmtp");
    $mail->SMTPAuth = WSTConf("CONF.mailAuth");
    $mail->Username = WSTConf("CONF.mailUserName");
    $mail->Password = WSTConf("CONF.mailPassword");
    $mail->CharSet = 'utf-8';
    // 装配邮件头信息
    $mail->From = WSTConf("CONF.mailAddress");
    $mail->AddAddress($to);
    $mail->FromName = WSTConf("CONF.mailSendTitle");
    $mail->IsHTML(true);
    // 装配邮件正文信息
    $mail->Subject = $subject;
    $mail->Body = $content;
    // 发送邮件
    $rs =array();
    if (!$mail->Send()) {
        $rs['status'] = 0;
        $rs['msg'] = $mail->ErrorInfo;
        return $rs;
    else {
        $rs['status'] = 1;
        return $rs;
    }
}
 
/**
 * 获取系统配置数据
 */
function WSTConfig(){
    $rs = cache('WST_CONF');
    if(!$rs){
        $rv = Db::name('sys_configs')->field('fieldCode,fieldValue')->select();
        $rs = [];
        foreach ($rv as $v){
            $rs[$v['fieldCode']] = $v['fieldValue'];
        }
        //获取风格
        $styles = Db::name('styles')->where(['isUse'=>1])->field('styleSys,stylePath,id')->select();
        if(!empty($styles)){
            foreach ($styles as $key => $v) {
                $rs['wst'.$v['styleSys'].'Style'] = $v['stylePath'];
                $rs['wst'.$v['styleSys'].'StyleId'] = $v['id'];
            }
        }
        //获取上传文件目录配置
        $data = Db::name('datas')->where('catId',3)->column('dataVal');
        foreach ($data as $key => $v){
            $data[$key] = str_replace('_','',$v);
        }
        $rs['wstUploads'] = $data;
        if(WSTConf('CONF.shopLicense')=='')$rs['shopSlogan'] = $rs['shopSlogan']."  ".base64_decode('IC0gUG93ZXJlZCBCeSBXU1RTaG9w');
        cache('WST_CONF',$rs,31536000);
    }
    return $rs;
 
/**
 * 判断手机号格式是否正确
 */
function WSTIsPhone($phoneNo){
    $reg "/^13[\d]{9}$|^14[5,7]{1}\d{8}$|^15[^4]{1}\d{8}$|^17[0,6,7,8]{1}\d{8}$|^18[\d]{9}$/";
    $rs = \think\Validate::regex($phoneNo,$reg);
    return $rs;
}
 
/**
 * 检测登录账号是否可用
 * @param $key 要检测的内容
 */
function WSTCheckLoginKey($val,$userId = 0){
    if($val=='')return WSTReturn("登录账号不能为空");
    if(!WSTCheckFilterWords($val,WSTConf("CONF.registerLimitWords"))){
        return WSTReturn("登录账号包含非法字符");
    }
    $dbo = Db::name('users')->where(["loginName|userEmail|userPhone"=>['=',$val],'dataFlag'=>1]);
    if($userId>0){
        $dbo->where("userId""<>"$userId);
    }
    $rs $dbo->count();
    if($rs==0){
        return WSTReturn("该登录账号可用",1);
    }
    return WSTReturn("对不起,登录账号已存在");
}
 
/**
 * 生成随机数账号
 */
function WSTRandomLoginName($loginName){
    $chars array("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z");
    //简单的派字母
    foreach ($chars as $key =>$c){
        $crs = WSTCheckLoginKey($loginName."_".$c);
        if($crs['status']==1)return $loginName."_".$c;
    }
    //随机派三位数值
    for($i=0;$i<1000;$i++){
        $crs $this->WSTCheckLoginKey($loginName."_".$i);
        if($crs['status']==1)return $loginName."_".$i;
    }
    return '';
}
 
/**
 * 删除一维数组里的多个key
 */
function WSTUnset(&$data,$keys){
    if($keys!='' && is_array($data)){
        $key explode(',',$keys);
        foreach ($key as $v)unset($data[$v]);
    }
}
/**
 * 只允许一维数组里的某些key通过
 */
function WSTAllow(&$data,$keys){
    if($keys!='' && is_array($data)){
        $key explode(',',$keys);
        foreach ($data as $vkeys =>$v)if(!in_array($vkeys,$key))unset($data[$vkeys]);
    }
}
 
/**
 * 字符串替换
 * @param string $str     要替换的字符串
 * @param string $repStr  即将被替换的字符串
 * @param int $start      要替换的起始位置,从0开始
 * @param string $splilt  遇到这个指定的字符串就停止替换
 */
function WSTStrReplace($str,$repStr,$start,$splilt ''){
    $newStr substr($str,0,$start);
    $breakNum = -1;
    for ($i=$start;$i<strlen($str);$i++){
        $char substr($str,$i,1);
        if($char==$splilt){
            $breakNum $i;
            break;
        }
        $newStr.=$repStr;
    }
    if($splilt!='' && $breakNum>-1){
        for ($i=$breakNum;$i<strlen($str);$i++){
            $char substr($str,$i,1);
            $newStr.=$char;
        }
    }
    return $newStr;
}
 
/**
 * 获取指定商品分类的子分类列表
 */
function WSTGoodsCats($parentId = 0,$isFloor = -1){
    $dbo = Db::name('goods_cats')->where(['dataFlag'=>1, 'isShow' => 1,'parentId'=>$parentId]);
    if($isFloor!=-1)$db0>where('isFloor',$isFloor);
    return $dbo->field("catName,catId")->order('catSort asc')->select();
}
 
 
/**
 * 上传图片
 * 需要生成缩略图: isThumb=1
 * 需要加水印:isWatermark=1
 * pc版缩略图: width height
 * 手机版原图:mWidth mHeight
 * 缩略图:mTWidth mTHeight
 * 判断图片来源:fromType 0:商家/用户   1:平台管理员
 */
function WSTUploadPic($fromType=0){
    $fileKey = key($_FILES);
    $dir = Input('param.dir');
    if($dir=='')return json_encode(['msg'=>'没有指定文件目录!','status'=>-1]);
    $dirs = WSTConf("CONF.wstUploads");
     if(!in_array($dir$dirs)){
         return json_encode(['msg'=>'非法文件目录!','status'=>-1]);
     }
     // 上传文件
    $file = request()->file($fileKey);
    if($file===null){
        return json_encode(['msg'=>'上传文件不存在或超过服务器限制','status'=>-1]);
    }
    $validate new \think\Validate([
        ['fileMime','fileMime:image/png,image/gif,image/jpeg,image/x-ms-bmp','只允许上传jpg,gif,png,bmp类型的文件'],
        ['fileExt','fileExt:jpg,jpeg,gif,png,bmp','只允许上传后缀为jpg,gif,png,bmp的文件'],
        ['fileSize','fileSize:2097152','文件大小超出限制'],//最大2M
    ]);
    $data = ['fileMime'  => $file,
             'fileSize' => $file,
             'fileExt'=> $file
            ];
    if (!$validate->check($data)) {
        return json_encode(['msg'=>$validate->getError(),'status'=>-1]);
    }
    $info $file->rule('uniqid')->move(ROOT_PATH.'/upload/'.$dir."/".date('Y-m'));
    if($info){
        $filePath $info->getPathname();
        $filePath str_replace(ROOT_PATH,'',$filePath);
        $filePath str_replace('\\','/',$filePath);
        $name $info->getFilename();
        $filePath str_replace($name,'',$filePath);
        //原图路径
        $imageSrc = trim($filePath.$name,'/');
        //图片记录
        WSTRecordImages($imageSrc, (int)$fromType);
        //打开原图
        $image = \image\Image::open($imageSrc);
        //缩略图路径 手机版原图路径 手机版缩略图路径
        $thumbSrc $mSrc $mThumb = null;
        //手机版原图宽高
        $mWidth = min($image->width(),(int)input('mWidth',700));
        $mHeight = min($image->height(),(int)input('mHeight',700));
        //手机版缩略图宽高
        $mTWidth = min($image->width(),(int)input('mTWidth',250));
        $mTHeight = min($image->height(),(int)input('mTHeight',250));
 
        /****************************** 生成缩略图 *********************************/
        $isThumb = (int)input('isThumb');
        if($isThumb==1){
            //缩略图路径
            $thumbSrc str_replace('.''_thumb.'$imageSrc);
            $image->thumb((int)input('width',min(300,$image->width())), (int)input('height',min(300,$image->height())),2)->save($thumbSrc,$image->type(),90);
            //是否需要生成移动版的缩略图
            $suffix = WSTConf("CONF.wstMobileImgSuffix");
            if(!empty($suffix)){
                $image = \image\Image::open($imageSrc);
                $mSrc str_replace('.',"$suffix.",$imageSrc);
                $mThumb str_replace('.''_thumb.',$mSrc);
                $image->thumb($mWidth$mHeight)->save($mSrc,$image->type(),90);
                $image->thumb($mTWidth$mTHeight, 2)->save($mThumb,$image->type(),90);
            }
 
 
        }
        /***************************** 添加水印 ***********************************/
        $isWatermark=(int)input('isWatermark');
        if($isWatermark==1 && (int)WSTConf('CONF.watermarkPosition')!==0){
            //取出水印配置
            $wmWord = WSTConf('CONF.watermarkWord');//文字
            $wmFile = trim(WSTConf('CONF.watermarkFile'),'/');//水印文件
            $wmPosition = (int)WSTConf('CONF.watermarkPosition');//水印位置
            $wmSize = ((int)WSTConf('CONF.watermarkSize')!=0)?WSTConf('CONF.watermarkSize'):'20';//大小
            $wmColor = (WSTConf('CONF.watermarkColor')!='')?WSTConf('CONF.watermarkColor'):'#000000';//颜色必须是16进制的
            $wmOpacity = ((int)WSTConf('CONF.watermarkOpacity')!=0)?WSTConf('CONF.watermarkOpacity'):'100';//水印透明度
            //是否有自定义字体文件
            $customTtf $_SERVER['DOCUMENT_ROOT'].WSTConf('CONF.watermarkTtf');
            $ttf is_file($customTtf)?$customTtf:EXTEND_PATH.'/verify/verify/ttfs/3.ttf';
            $image = \image\Image::open($imageSrc);
            if(!empty($wmWord)){//当设置了文字水印 就一定会执行文字水印,不管是否设置了文件水印
               
                //执行文字水印
                $image->text($wmWord$ttf$wmSize$wmColor$wmPosition)->save($imageSrc);
                if($thumbSrc!==null){
                    $image->thumb((int)input('width',min(300,$image->width())), (int)input('height',min(300,$image->height())),2)->save($thumbSrc,$image->type(),90);
                }
                //如果有生成手机版原图
                if(!empty($mSrc)){
                    $image = \image\Image::open($imageSrc);
                    $image->thumb($mWidth$mHeight)->save($mSrc,$image->type(),90);
                    $image->thumb($mTWidth$mTHeight, 2)->save($mThumb,$image->type(),90);
                }
            }elseif(!empty($wmFile)){//设置了文件水印,并且没有设置文字水印
                //执行图片水印
                $image->water($wmFile$wmPosition$wmOpacity)->save($imageSrc);
                if($thumbSrc!==null){
                    $image->thumb((int)input('width',min(300,$image->width())), (int)input('height',min(300,$image->height())),2)->save($thumbSrc,$image->type(),90);
                }
                //如果有生成手机版原图
                if($mSrc!==null){
                    $image = \image\Image::open($imageSrc);
                    $image->thumb($mWidth$mHeight)->save($mSrc,$image->type(),90);
                    $image->thumb($mTWidth$mTHeight,2)->save($mThumb,$image->type(),90);
                }
            }
        }
        //判断是否有生成缩略图
        $thumbSrc = ($thumbSrc==null)?$info->getFilename():str_replace('.','_thumb.'$info->getFilename());
        $filePath = ltrim($filePath,'/');
        // 用户头像上传宽高限制
        $isCut = (int)input('isCut');
        if($isCut){
            $imgSrc $filePath.$info->getFilename();
            $image = \image\Image::open($imgSrc);
            $size $image->size();//原图宽高
            $w $size[0];
            $h $size[1];
            $rate $w/$h;
            if($w>$h && $w>500){
                $newH = 500/$rate;
                $image->thumb(500, $newH)->save($imgSrc,$image->type(),90);
            }elseif($h>$w && $h>500){
                $newW = 500*$rate;
                $image->thumb($newW, 500)->save($imgSrc,$image->type(),90);
            }
        }
        return json_encode(['status'=>1,'savePath'=>$filePath,'name'=>$info->getFilename(),'thumb'=>$thumbSrc]);
    }else{
        //上传失败获取错误信息
        return $file->getError();
    }    
}
/**
 * 上传文件
 */
function WSTUploadFile(){
    $fileKey = key($_FILES);
    $dir = Input('post.dir');
    if($dir=='')return json_encode(['msg'=>'没有指定文件目录!','status'=>-1]);
    $dirs = WSTConf("CONF.wstUploads");
     if(!in_array($dir$dirs)){
         return json_encode(['msg'=>'非法文件目录!','status'=>-1]);
     }
     //上传文件
    $file = request()->file($fileKey);
    if($file===null){
        return json_encode(['msg'=>'上传文件不存在或超过服务器限制','status'=>-1]);
    }
    $validate new \think\Validate([
        ['fileExt','fileExt:xls,xlsx,xlsm','只允许上传后缀为xls,xlsx,xlsm的文件']
    ]);
    $data = ['fileExt'=> $file];
    if (!$validate->check($data)) {
        return json_encode(['msg'=>$validate->getError(),'status'=>-1]);
    }
    $info $file->rule('uniqid')->move(ROOT_PATH.'/upload/'.$dir."/".date('Y-m'));
    //保存路径
    $filePath $info->getPathname();
    $filePath str_replace(ROOT_PATH,'',$filePath);
    $filePath str_replace('\\','/',$filePath);
    $name $info->getFilename();
    $filePath str_replace($name,'',$filePath);
    if($info){
        return json_encode(['status'=>1,'name'=>$info->getFilename(),'route'=>$filePath]);
    }else{
        //上传失败获取错误信息
        return $file->getError();
    }
}
/**
 * 生成默认商品编号/货号
 */
function WSTGoodsNo($pref ''){
    return $pref.(round(microtime(true),4)*10000).mt_rand(0,9);
}
 
/**
* 图片管理
* @param $imgPath    图片路径
* @param $fromType   0:用户/商家 1:平台管理员
*/
function WSTRecordImages($imgPath$fromType){
    $data = [];
    $data['imgPath'] = $imgPath;
    if(file_exists($imgPath)){
        $data['imgSize'] = filesize($imgPath); //返回字节数 imgsize/1024 k    imgsize/1024/1024 m
    }
    //获取表名
    $table explode('/',$imgPath);
    $data['fromTable'] = $table[1];
    $data['fromType'] = (int)$fromType
    //根据类型判断所有者
    $data['ownId'] = ((int)$fromType==0)?(int)session('WST_USER.userId'):(int)session('WST_STAFF.staffId');
    $data['isUse'] = 0; //默认不使用
    $data['createTime'] = date('Y-m-d H:i:s');
 
    //保存记录
    Db::name('images')->insert($data);
 
}
/**
* 启用图片
* @param $fromType 0:  用户/商家 1:平台管理员
* @param $dataId        来源记录id
* @param $imgPath       图片路径,要处理多张图片时请传入一位数组,或用","连接图片路径
* @param $fromTable     该记录来自哪张表
* @param $imgFieldName  表中的图片字段名称
*/
function WSTUseImages($fromType$dataId$imgPath$fromTable=''$imgFieldName=''){
    if(empty($imgPath))return;
 
    $image['fromType'] = (int)$fromType;
    //根据类型判断所有者
    $image['ownId'] = ((int)$fromType==0)?(int)session('WST_USER.userId'):(int)session('WST_STAFF.staffId');
    $image['dataId'] = (int)$dataId;
 
    $image['isUse'] = 1;//标记为启用
    if($fromTable!=''){
        $tmp = ['',''];
        if(strpos($fromTable,'-')!==false){
            $tmp explode('-',$fromTable);
            $fromTable str_replace('-'.$tmp[1],'',$fromTable);
        }
        $image['fromTable'] = str_replace('_','',$fromTable.$tmp[1]);
    }
 
    $imgPath is_array($imgPath)?$imgPath:explode(',',$imgPath);//转数组
 
 
    //用于与旧图比较
    $newImage $imgPath;
 
    // 不为空说明执行修改
    if($imgFieldName!=''){
        //要操作的表名  $fromTable;
        // 获取`$fromTable`表的主键
        $prefix = config('database.prefix');
        $tableName $prefix.$fromTable;
        $pk = Db::getTableInfo("$tableName"'pk');
        // 取出旧图
        $oldImgPath = model("$fromTable")->where("$pk",$dataId)->value("$imgFieldName"); 
        // 转数组
        $oldImgPath explode(','$oldImgPath);
 
        // 1.要设置为启用的文件
        $newImage array_diff($imgPath$oldImgPath);
        // 2.要标记为删除的文件
        $oldImgPath array_diff($oldImgPath$imgPath);
        //旧图数组跟新图数组相同则不需要继续执行
        if($newImage!=$oldImgPath)WSTUnuseImage($oldImgPath);
    }
    if(!empty($newImage)){
        Db::name('images')->where(['imgPath'=>['in',$newImage]])->update($image);
    }
}
 
/**
* 编辑器图片记录
* @param $fromType 0:  用户/商家 1:平台管理员
* @param $dataId        来源记录id
* @param $oldDesc       旧商品描述
* @param $newDesc       新商品描述
* @param $fromTable     该记录来自哪张表
*/
function WSTEditorImageRocord($fromTable$dataId$oldDesc$newDesc){
        //编辑器里的图片
        $rule '/src="\/(upload.*?)"/';
        // 获取旧的src数组
        preg_match_all($rule,$oldDesc,$images);
        $oldImgPath $images[1];
 
        preg_match_all($rule,$newDesc,$images);  
        // 获取新的src数组
        $imgPath $images[1];
        // 1.要设置为启用的文件
        $newImage array_diff($imgPath$oldImgPath);
        // 2.要标记为删除的文件
        $oldImgPath array_diff($oldImgPath$imgPath);
        //旧图数组跟新图数组相同则不需要继续执行
        if($newImage!=$oldImgPath){
            //标记新图启用
            WSTUseImages($fromTable$dataId$newImage);
            //标记旧图删除
            WSTUnuseImage($oldImgPath);
        }
}
 
/**
* 标记删除图片
*/
function WSTUnuseImage($fromTable$field '' $dataId = 0){
    if($fromTable=='')return;
    $imgPath $fromTable;
    if($field!=''){
        $prefix = config('database.prefix');
        $tableName $prefix.$fromTable;
        $pk = Db::getTableInfo("$tableName"'pk');
        // 取出旧图
        $imgPath = model("$fromTable")->where("$pk",$dataId)->value("$field");
    }
    if(!empty($imgPath)){
        $imgPath is_array($imgPath)?$imgPath:explode(',',$imgPath);//转数组
        Db::name('images')->where(['imgPath'=>['in',$imgPath]])->setField('isUse',0);
    }
}
/**
 * 获取系统根目录
 */
function WSTRootPath(){
    return dirname(dirname(dirname(dirname(__File__))));
}
/**
 * 切换图片
 * @param $imgurl 图片路径
 * @param $imgType 图片类型    0:PC版大图   1:PC版缩略图       2:移动版大图    3:移动版缩略图
 * 图片规则  
 * PC版版大图 :201635459344.jpg
 * PC版版缩略图 :201635459344_thumb.jpg
 * 移动版大图 :201635459344_m.jpg
 * 移动版缩略图 :201635459344_m_thumb.jpg
 */
function WSTImg($imgurl,$imgType = 1){
    $m = WSTConf('CONF.wstMobileImgSuffix');
    $imgurl str_replace($m.'.','.',$imgurl);
    $imgurl str_replace($m.'_thumb.','.',$imgurl);
    $imgurl str_replace('_thumb.','.',$imgurl);
    $img '';
    switch ($imgType){
        case 0:$img =  $imgurl;break;
        case 1:$img =  str_replace('.','_thumb.',$imgurl);break;
        case 2:$img =  str_replace('.',$m.'.',$imgurl);break;
        case 3:$img =  str_replace('.',$m.'_thumb.',$imgurl);break;
    }
    return ((file_exists(WSTRootPath()."/".$img))?$img:$imgurl);
}
/**
 * 生成订单号
 */
function WSTOrderNo(){
    $orderId = Db::name('orderids')->insertGetId(['rnd'=>time()]);
    return $orderId.(fmod($orderId,7));
}
/**
 * 高精度数字相加
 * @param $num
 * @param number $i 保留小数位
 */
function WSTBCMoney($num1,$num2,$i=2){
    $num bcadd($num1$num2$i);
    return (float)$num;
}
/**
 * 获取支付方式
 */
function WSTLangPayType($v){
    return ($v==1)?"在线支付":"货到付款";
}
/**
 * 收货方式
 */
function WSTLangDeliverType($v){
    return ($v==1)?"自提":"送货上门";
}
/**
 * 订单状态
 */
function WSTLangOrderStatus($v){
    switch($v){
        case -3:return '用户拒收';
        case -2:return '待支付';
        case -1:return '已取消';
        case 0:return '待发货';
        case 1:return '待收货';
        case 2:return '已收货';
    }
}
/**
 * 积分来源
 */
function WSTLangScore($v){
    switch($v){
        case 1:return '商品订单';
        case 2:return '评价订单';
    }
}
/**
 * 资金来源
 */
function WSTLangMoneySrc($v){
    switch($v){
        case 1:return '商品订单';
        case 2:return '订单结算';
        case 3:return '提现申请';
    }
}
/**
 * 积分来源
 */
function WSTLangComplainStatus($v){
    switch($v){
        case 0:return '等待处理';
        case 1:return '等待应诉人应诉';
        case 2:return '应诉人已应诉';
        case 3:return '等待仲裁';
        case 4:return '已仲裁';
    }
}
/**
 * 支付来源
 */
function WSTLangPayFrom($v){
    switch($v){
        case 1:return '支付宝';
        case 2:return '微信';
    }
}
/**
 * 获取业务数据内容
 */
function WSTDatas($catId,$id = 0){
    $rs = Db::name('datas')->order('catId asc,dataSort asc,id asc')->cache(31536000)->select();
    $data = [];
    foreach ($rs as $key =>$v){
        $data[$v['catId']][$v['dataVal']] = $v;
    }
    if(isset($data[$catId])){
        if($id==0)return $data[$catId];
        return isset($data[$catId][$id])?$data[$catId][$id]:'';
    }
    return [];
}
/**
 * 截取字符串
 */
function WSTMSubstr($str$start = 0, $length$charset "utf-8"$suffix = false){
    $newStr '';
    if (function_exists ( "mb_substr" )) {
        if ($suffix){
            $newStr = mb_substr ( $str$start$length$charset )."...";
        }else{
            $newStr = mb_substr ( $str$start$length$charset );
        }
    elseif (function_exists ( 'iconv_substr' )) {
        if ($suffix){
            $newStr = iconv_substr ( $str$start$length$charset )."...";
        }else{
            $newStr = iconv_substr ( $str$start$length$charset );
        }
    }
    if($newStr==''){
    $re ['utf-8'] = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
    $re ['gb2312'] = "/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/";
    $re ['gbk'] = "/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/";
    $re ['big5'] = "/[\x01-\x7f]|[\x81-\xfe]([\x40-\x7e]|\xa1-\xfe])/";
    preg_match_all ( $re [$charset], $str$match );
    $slice = join ( ""array_slice $match [0], $start$length ) );
    if ($suffix)
        $newStr $slice;
    }
    return $newStr;
}
function WSTScore($score,$users,$type = 5,$len = 0,$total = 1){
    if((int)$score==0)return $type;
    switch($type){
        case 5:return round($score/$total/$users,0);
        case 10:return round($score/$total*2/$users,$len);
        case 100:return round($score/$total*2/$users,$len);
    }
}
function WSTShopEncrypt($goodsId){
    return md5(base64_encode("wstshop".date("Y-m-d").$goodsId));
}
/**
 * 根据子分类循环获取其父级分类
 */
function WSTGoodsCatPath($catId$data = []){
    if($catId==0)return $data;
    $data[] = $catId;
    $parentId = Db::name('goods_cats')->where('catId',$catId)->value('parentId');
    if($parentId==0){
        krsort($data);
        return $data;
    }else{
        return WSTGoodsCatPath($parentId$data);
    }
}
/**
 * 提供原生分页处理
 */
function WSTPager($total,$rs,$page,$size = 0){
    $pageSize = ($size>0)?$size:config('paginate.list_rows');
    $totalPage = ($total%$pageSize==0)?($total/$pageSize):(intval($total/$pageSize)+1);
    return ['Total'=>$total,'PerPage'=>$pageSize,'CurrentPage'=>$page,'TotalPage'=>$totalPage,'Rows'=>$rs];
}
 
 
/**
* 编辑器上传图片
*/
function WSTEditUpload($fromType){
    //PHP上传失败
    if (!empty($_FILES['imgFile']['error'])) {
        switch($_FILES['imgFile']['error']){
            case '1':
                $error '超过php.ini允许的大小。';
                break;
            case '2':
                $error '超过表单允许的大小。';
                break;
            case '3':
                $error '图片只有部分被上传。';
                break;
            case '4':
                $error '请选择图片。';
                break;
            case '6':
                $error '找不到临时目录。';
                break;
            case '7':
                $error '写文件到硬盘出错。';
                break;
            case '8':
                $error 'File upload stopped by extension。';
                break;
            case '999':
            default:
                $error '未知错误。';
        }
        return WSTReturn(1,$error);
    }
 
    $fileKey = key($_FILES);
    $dir 'image'// 编辑器上传图片目录
    $dirs = WSTConf("CONF.wstUploads");
     if(!in_array($dir$dirs)){
         return json_encode(['error'=>1,'message'=>'非法文件目录!']);
     }
     // 上传文件
    $file = request()->file($fileKey);
    if($file===null){
        return json_encode(["error"=>1,"message"=>'上传文件不存在或超过服务器限制']);
    }
    $validate new \think\Validate([
        ['fileMime','fileMime:image/png,image/gif,image/jpeg,image/x-ms-bmp','只允许上传jpg,gif,png,bmp类型的文件'],
        ['fileExt','fileExt:jpg,jpeg,gif,png,bmp','只允许上传后缀为jpg,gif,png,bmp的文件'],
        ['fileSize','fileSize:2097152','文件大小超出限制'],//最大2M
    ]);
    $data = ['fileMime'  => $file,
             'fileSize' => $file,
             'fileExt'=> $file
            ];
    if (!$validate->check($data)) {
        return json_encode(['message'=>$validate->getError(),'error'=>1]);
    }
    $info $file->rule('uniqid')->move(ROOT_PATH.'/upload/'.$dir."/".date('Y-m'));
    if($info){
        $filePath $info->getPathname();
        $filePath str_replace(ROOT_PATH,'',$filePath);
        $filePath str_replace('\\','/',$filePath);
        $name $info->getFilename();
        $imageSrc = trim($filePath,'/');
        //图片记录
        WSTRecordImages($imageSrc, (int)$fromType);
        return json_encode(array('error' => 0, 'url' => $filePath));
    }
}
/**
 * 转义单引号
 */
function WSTHtmlspecialchars($v){
    return htmlspecialchars($v,ENT_QUOTES);
}
 
/**
* 发送商城消息
* @param int     $to 接受者d
* @param string $content 内容
* @param array  $msgJson 存放json数据
*/
function WSTSendMsg($to,$content,$msgJson=[],$msgType = 1){
    $message = [];
    $message['msgType'] = $msgType;
    $message['sendUserId'] = 1;
    $message['createTime'] = date('Y-m-d H:i:s');
    $message['msgStatus'] = 0;
    $message['dataFlag'] = 1;
 
    $message['receiveUserId'] = $to;
    $message['msgContent'] = $content;
    $message['msgJson'] = json_encode($msgJson);
    Db::name('messages')->insert($message);
 
}
 
function WSTFormatIn($split,$str){
    $strdatas explode($split,$str);
    $data array();
    for($i=0;$i<count($strdatas);$i++){
        $data[] = (int)$strdatas[$i];
    }
    $data array_unique($data);
    return implode($split,$data);
}
 
/**
 * 根据送货城市获取运费
 * @param $cityId 送货城市Id
 * @param @shopIds 店铺ID
 */
function WSTOrderFreight($cityId){
    $goodsFreight = ['total'=>0,'shops'=>[]];
    $rs = Db::name('freights')
         ->where('areaId2',$cityId)->field('freight')->find();
    // 该地区未设置运费则取后台默认运费
    $rs['freight'] = (((string)$rs['freight']===''))?WSTConf('CONF.defaultFreight'):$rs['freight'];
    return (float)$rs['freight'];
}

最后我们替换项目\wstshop\common\model下的LogSms.php文件,替换代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
namespace wstshop\common\model;
/**
 * 短信日志类
 */
class LogSms extends Base{
 
    /**
     * 写入并发送短讯记录
     */
    public function sendSMS($smsSrc,$phoneNumber,$content,$smsFunc,$verfyCode){
        $USER = session('WST_USER');
        $userId empty($USER)?0:$USER['userId'];
        $ip = request()->ip();
        
        //检测短信验证码验证是否正确
        if(WSTConf("CONF.smsVerfy")==1){
            $smsverfy = input("post.smsVerfy");
            $rs = WSTVerifyCheck($smsverfy);
            if(!$rs){
                return WSTReturn("验证码不正确!");
            }
        }
        //检测是否超过每日短信发送数
        $date date('Y-m-d');
        $smsRs $this->field("count(smsId) counts,max(createTime) createTime")
                     ->where(["smsPhoneNumber"=>$phoneNumber])
                     ->whereTime('createTime''between', [$date.' 00:00:00'$date.' 23:59:59'])->find();
        if($smsRs['counts']>(int)WSTConf("CONF.smsLimit")){
            return WSTReturn("请勿频繁发送短信验证!");
        }
        if($smsRs['createTime'] !='' && ((time()-strtotime($smsRs['createTime']))<120)){
            return WSTReturn("请勿频繁发送短信验证!");
        }
        //检测IP是否超过发短信次数
        $ipRs $this->field("count(smsId) counts,max(createTime) createTime")
                     ->where(["smsIP"=>$ip])
                     ->whereTime('createTime''between', [$date.' 00:00:00'$date.' 23:59:59'])->find();
        if($ipRs['counts']>(int)WSTConf("CONF.smsLimit")){
            return WSTReturn("请勿频繁发送短信验证!");
        }
        if($ipRs['createTime']!='' && ((time()-strtotime($ipRs['createTime']))<120)){
            return WSTReturn("请勿频繁发送短信验证!");
        }
        $code = SmsbaoSendSMS($phoneNumber,$content);
        $data array();
        $data['smsSrc'] = $smsSrc;
        $data['smsUserId'] = $userId;
        $data['smsPhoneNumber'] = $phoneNumber;
        $data['smsContent'] = $content;
        $data['smsReturnCode'] = $code;
        $data['smsCode'] = $verfyCode;
        $data['smsIP'] = $ip;
        $data['smsFunc'] = $smsFunc;
        $data['createTime'] = date('Y-m-d H:i:s');
        $this->data($data)->save();
        if(intval($code) == 0){
            return WSTReturn("短信发送成功!",1);
        }else{
            return WSTReturn("短信发送失败!");
        }
    }
}

好了,经过以上的替换,短信宝的短信平台已经替换成功了,我们去进行发送测试:


报备一下短信宝的VIP模板,这样就可以走短信宝的优质通道了,即便遇到敏感文字我们都不会人工审核,短信内容3~5秒就可送达。

另外:我们已经开发好完整的WSTshop电子商务系统短信宝插件,点击此链接  下载及查看安装流程。

开源插件

最新更新

电商类

CMS类

微信类

文章标签