mirror of
https://gitee.com/technical-laohu/mpay.git
synced 2026-05-07 19:07:42 +08:00
25 lines
428 B
PHP
25 lines
428 B
PHP
<?php
|
|
|
|
namespace app\controller;
|
|
|
|
use think\facade\View;
|
|
use payclient\LaKaLa;
|
|
|
|
class IndexController
|
|
{
|
|
public function index()
|
|
{
|
|
if (session('?nickname')) {
|
|
$nickname = session('nickname');
|
|
View::assign('nickname', $nickname);
|
|
}
|
|
return View::fetch();
|
|
}
|
|
public function test()
|
|
{
|
|
$key = "0383d7088b6947b68e4a626af119e2bd";
|
|
|
|
return $key;
|
|
}
|
|
}
|