mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-26 20:14:47 +01:00
10 lines
245 B
PHP
10 lines
245 B
PHP
<?php
|
|
require "http.php";
|
|
require "debug_timer.php";
|
|
|
|
createServer(function($request, $response){
|
|
$response->writeHead(200, array("Content-Type" => "text/plain"));
|
|
$response->write("Hello World");
|
|
$response->end();
|
|
})->listen(8888);
|