package mainimport ( "fmt" _ "fmt" "net/http" _ "os")func main() { http.HandleFunc("/", handle) http.ListenAndServe("0.0.0.0:8082",nil)}func handle(w http.ResponseWriter,r *http.Request) { fmt.Fprint(w,"URL=",r.URL.Path) fmt.Println(r.RequestURI)}
関連学習の推奨事項:
echo 1;
$http = new Swoole\Http\Server("0.0.0.0", 9501);$http->on('request', function ($request, $response) { echo 1;});$http->start();
以上がGo、PHP、Swooleの同時テストについて詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。