- Download VSCode 1.49 installer from VSCode download page .
- Open the installer file then follow the installation steps.
Go to tab extension explorer by press ctrl + shif + x. then search and install following extensions:
Go to tab extension explorer by press ctrl + shif + x. then search and install following extensions:
| <?php | |
| // Simple HTTP static file server using Swoole | |
| $host = $argv[1] ?? '127.0.0.1'; | |
| $port = $argv[2] ?? 9501; | |
| $http = new swoole_http_server($host, $port); | |
| // The usage of enable_static_handler seems to produce errors | |
| // $http->set([ |