class Index extends Controller
{
function index()
{
$file = EASYSWOOLE_ROOT.'/vendor/easyswoole/easyswoole/src/Resource/Http/welcome.html';
if(!is_file($file)){
$file = EASYSWOOLE_ROOT.'/src/Resource/Http/welcome.html';
}
go(function(){
co::sleep(1);
echo 1;
});
$this->response()->write(file_get_contents($file));
}
DEBUG : [Call to undefined function App\HttpController\go() at file:/wwwroot/App/HttpController/Index.php line:18]
已解决 是短别名未开启的原因 开启就好了