中秋节快乐

This commit is contained in:
Alone
2024-09-14 17:00:49 +08:00
parent 610dee88cd
commit dff1b038b1
4286 changed files with 807503 additions and 6 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace app\api\controller;
use app\api\QfShop;
use Lizhichao\Word\VicWord;
class Index extends QfShop
{
public function index()
{
return jok("Hello World!");
}
public function search() {
$fc = new VicWord();
$keywords = input('keywords');
$keywords = $fc->getAutoWord($keywords);
$keywords = filterAndExtractWords($keywords);
return jok("Hello World!",$keywords);
}
}