Flat files and plain-old PHP functions rocking on a production-grade, high-performance, scalable, concurrent and non-blocking HTTP server.
Enables PHP developers to write high-performance, scalable, concurrent TCP, UDP, Unix socket, HTTP, Websocket services in PHP programming language without too much knowledge about non-blocking I/O programming and low-level Linux kernel. Compared with other async programming frameworks or softwares such as Nginx, Tornado, Node.js, Swoole has the built-in async, multiple threads I/O modules. Developers can use sync or async API to write the applications — www.swoole.co.uk
Rapid development of high performance protocol servers & clients with PHP language
Event-driven, asynchronous programming for PHP
Event loop API
Processes management API
Memory management API
Golang style channels for inter-processes communication
Web applications and systems
Mobile communication systems
Online game systems
Internet of things
Car networking
Smart home systems
It is open source and free. Released under the license of Apache 2.0.
Forget about everything you know on how to run PHP on web servers like Apache and Nginx behind modules and CGI layers.
Swoole is released as a PHP extension (PECL) and runs as a PHP CLI application. The differences between Swoole with PHP-FPM the traditional PHP model are:
Swoole forks a number of worker processes based on CPU core number to utilize all CPU cores.
Swoole supports Long-live connections for websocket server or TCP/UDP server.
Swoole supports more server-side protocols.
Swoole can manage and reuse the status in memory.
Swoole prerequisites operation system are: Linux, FreeBSD or MacOS, but don't worry Windows-people, we have Docker! Building an image is very simple, you can start from the official PHP image and just install Swoole from pecl:
FROM php:7.3-cliRUN pecl install swooleRUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini"RUN echo "extension=swoole.so" >> "$PHP_INI_DIR/php.ini"WORKDIR /appCMD [ "php", "index.php" ]
Then we just mount our project on the /app
directory:
version: '3'services:swoole:container_name: siler_swoolebuild: .ports:- '9501:9501'volumes:- ./:/app
There is also WSL and Unix-people can skip this step.
You already got Siler, right? Flat-files and plain-old PHP functions rockin'on! Just simple. A set of general purpose high-level abstractions aiming an API for declarative programming in PHP. And this wouldn't be different about Swoole.
The Siler\Swoole
namespace get you covered.
<?php declare(strict_types=1);require_once 'vendor/autoload.php';use Siler\Swoole;$handler = function () {Swoole\emit('Hello World');};Swoole\handle($handler);Swoole\start('0.0.0.0', 9501);
That's it! This attaches a callback handler that always emits "Hello World" on every request and starts a HTTP server on port 9501. Run it using docker-compose up
or just php index.php
if you're not using Docker.
Go to http://localhost:9051
or http://<docker_machine_ip>:9051
and you should get a "Hello World" response as plain/text.
You know, Siler can do a lot more, it abstracts things like Routing and Twig Templating. Let's add this to our Swoole server:
<?php declare(strict_types=1);require_once 'vendor/autoload.php';use Siler\Swoole;use Siler\Route;$handler = function ($req) {Route\get('/', 'pages/home.php', Swoole\cast($req));Swoole\emit('Not found', 404);};Swoole\handle($handler);Swoole\start('0.0.0.0', 9501);
Now we are forwarding GET requests from path /
to file pages/home.php
.
<?php declare(strict_types=1);use Siler\Swoole;Swoole\emit('Hello World');
You may ask: "What about Swoole\emit('Not found', 404)
on the end?".
Nice question! Siler\Swoole\emit()
function will short-circuit further emit attempts, so it will work exactly like you have imagined, when a route matches a path like /
it will emit the proper response, but when no route matches and this means: no route will emit something, then Swoole\emit('Not found', 404)
will emit a 404 Not found response.
Go ahead, restart the server and go to http://localhost:9501/, you should still be seeing "Hello World", but going to any other path, like http://localhost:9501/banana, you should be seeing "Not found" and a proper 404 status code.
Twig should work exactly the same as there is no Swoole behind it:
<?php declare(strict_types=1);use Siler\Swoole;use Siler\Twig;Swoole\emit(Twig\render('home.twig'));
Swoole's HTTP server will auto-magically outputs the Response header Content-type as text/html instead of text/plain now.
Since there is no web server module or CGI layer, things like $_GET won't work for query string parameters etc. But fear nothing, Siler provides getters for both Swoole's Request and Response objects: Siler\Swoole\request()
and Siler\Swoole\response()
.
Instead of always printing "Hello World", let's print the name that came from the URL parameter:
<?php declare(strict_types=1);use Siler\Swoole;use Siler\Twig;$name = Swoole\request()->get['name'] ?? 'World';Swoole\emit(Twig\render('home.twig', ['name' => $name]));
Go to http://localhost:9501/?name=Leo, you should be seeing "Hello Leo" now.
You can find more about Swoole's Request and Response objects at: swoole.co.uk/docs/modules/swoole-http-server/methods-properties
This is as simple as Siler gets.
We can add a new route/API endpoint to GET all of our Todos
:
<?php declare(strict_types=1);require_once 'vendor/autoload.php';use Siler\Route;use Siler\Swoole;use Siler\Twig;Twig\init('pages');$handler = function ($req, $res) {Route\get('/', 'pages/home.php', Swoole\cast($req));Route\get('/todos', 'api/todos.php', Swoole\cast($req));// None of the above short-circuited the response with Swoole\emit().Swoole\emit('Not found', 404);};Swoole\handle($handler);Swoole\start('0.0.0.0', 9501);
Then you can return your JSON and within emit()
specify a proper Status Code and Content-Type:
<?php declare(strict_types=1);use Siler\Swoole;$todos = [['id' => 1, 'text' => 'foo'],['id' => 2, 'text' => 'bar'],['id' => 3, 'text' => 'baz'],];Swoole\emit(json_encode($todos), 200, ['Content-Type' => 'application/json']);
Head to http://localhost:9501/todos. There we go! A Siler ❤️ Swoole powered API.
All functions on Siler\Swoole
namespace.
function handle(callable $handler)
Attach a handler for the HTTP server. The $handler
can have two parameters, first is a Swoole\Http\Request
and second is a Swoole\Http\Response
.
function start(string $host, int $port)
Starts the HTTP server binding it to the specified $host
and $post
.
function cast(\Swoole\Http\Request $request)
Casts a Swoole Request object to the Siler's request notation.
function request(): \Swoole\Http\Request
Returns the current HTTP Request.
function response(): \Swoole\Http\Response
Returns the current HTTP Response.
function emit(string $content, int $status = 200, array $headers = [])
Emits a HTTP response using Swoole's Response object and Siler's halting strategy.
You can still use any other Swoole module. More abstractions to come.