12345678910111213141516171819202122232425262728293031323334353637 |
- <?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());
- }
- }
|