李帅

1.增加注册登录接口

...@@ -24,6 +24,10 @@ Route::get('/', function () { ...@@ -24,6 +24,10 @@ Route::get('/', function () {
24 return view('welcome'); 24 return view('welcome');
25 }); 25 });
26 26
27 +Route::get('/phpinfo', function () {
28 + phpinfo();
29 +});
30 +
27 31
28 Route::get('/create_overlay', function () { 32 Route::get('/create_overlay', function () {
29 header ('Content-Type: image/png'); 33 header ('Content-Type: image/png');
......