Skip to content

Instantly share code, notes, and snippets.

@cyonks
Created January 6, 2016 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cyonks/4aa942c1b1594bb320ad to your computer and use it in GitHub Desktop.
Save cyonks/4aa942c1b1594bb320ad to your computer and use it in GitHub Desktop.
基于swoole_http_server的Http服务器
<?php
$http = new swoole_http_server("127.0.0.1", 9501);
$http->on('request', function ($request, $response) {
$html = "<h1>Hello Swoole.</h1>";
$response->end($html);
});
$http->start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment