1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\HttpController;
- use EasySwoole\Http\AbstractInterface\Controller;
- class Index extends Controller
- {
- public 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';
- }
- $this->response()->write(file_get_contents($file));
- }
- function test()
- {
- $this->response()->write('this is test');
- }
- protected function actionNotFound(?string $action)
- {
- $this->response()->withStatus(404);
- $file = EASYSWOOLE_ROOT.'/vendor/easyswoole/easyswoole/src/Resource/Http/404.html';
- if(!is_file($file)){
- $file = EASYSWOOLE_ROOT.'/src/Resource/Http/404.html';
- }
- $this->response()->write(file_get_contents($file));
- }
- }
|