123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Tenim;
- use think\Db;
- class Demo extends Api
- {
-
-
-
-
-
- protected $noNeedLogin = ['test', 'test1','im_reg_all'];
-
- protected $noNeedRight = ['test2'];
-
- public function im_reg_all()
- {
- $list = Db::name('user')->select();
- $tenim = new Tenim();
- foreach($list as $key => $val){
- $rs = $tenim->register('user_'. $val['id'], $val['nickname'], localpath_to_netpath($val['avatar']));
- dump($rs);
- }
-
- $list = Db::name('worker')->select();
- $tenim = new Tenim();
- foreach($list as $key => $val){
- $rs = $tenim->register('master_'. $val['id'], $val['truename'], localpath_to_netpath($val['avatar']));
- dump($rs);
- }
-
- $list = Db::name('company')->select();
- $tenim = new Tenim();
- foreach($list as $key => $val){
- $rs = $tenim->register('kefu_'. $val['id'], $val['companyname'], localpath_to_netpath($val['avatar']));
- dump($rs);
- }
- }
-
- public function test()
- {
- $data = [
- [
- 'type' => 'video',
- 'url' => '/upload/20240712/aaaaa.mp4',
- ],
- [
- 'type' => 'img',
- 'url' => '/upload/20240712/bbbbb.jpg',
- ],
- [
- 'type' => 'video',
- 'url' => '/upload/20240712/ccccc.mp4',
- ],
- [
- 'type' => 'img',
- 'url' => '/upload/20240712/ddddd.png',
- ],
- ];
- echo json_encode($data);
- }
-
- public function test1()
- {
- $rule = '246,230,240,259,260,317,253,261,262,263,100,265,102,103,104,120,267,269,270,110,266,113,114,289,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,271,272,274,290,280,281,282,283,284,286,273,278,279,275,276,277,291,292,293';
- $rule = explode(',',$rule);
- dump($rule);
- $b = array_count_values($rule);
- dump($b);
- }
-
- public function test2()
- {
- $this->success('返回成功', ['action' => 'test2']);
- }
-
- public function test3()
- {
- $this->success('返回成功', ['action' => 'test3']);
- }
- }
|