1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace app\index\controller;
- use app\common\controller\Frontend;
- use app\common\model\Mobile;
- use app\common\service\MobileComputer;
- use app\service\byte_dance\ByteDance;
- use app\service\byte_dance\ByteDancePay;
- use app\service\id\IdVerify;
- use PhpOffice\PhpSpreadsheet\IOFactory;
- use think\helper\Str;
- class Index extends Frontend
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- protected $layout = '';
- public function index()
- {
- }
- public function payment($a=null){
- if(!$a){
- return '';
- }
- $file=RUNTIME_PATH.'/payment/'.$a;
- if(!file_exists($file)){
- return '';
- }
- return file_get_contents($file);
- }
- public function test(){
- //dd(MobileComputer::setMobile(input('no'))->filter());
- dd($this->request->root(true));
- }
- }
|