Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 847 Bytes

get-started.md

File metadata and controls

37 lines (23 loc) · 847 Bytes

Get started

Swoole framework is released as a PHP extension (PECL) and run as a PHP CLI application.

Installation

Please check the preparation and installation guide.

Hello world

An example of a web server written with Swoole which responds with 'Hello World':

<?php
$http = new swoole_http_server("127.0.0.1", 9501);

$http->on('start', function ($server) {
    echo "Swoole http server is started at http://127.0.0.1:9501\n";
});

$http->on('request', function ($request, $response) {
    $response->header("Content-Type", "text/plain");
    $response->end("Hello World\n");
});

$http->start();

To run the server, put the code into a file called server.php and execute it with php cli:

$ php server.php
$ curl http://127.0.0.1:9501/