Ratings | | Unique User Downloads | | Download Rankings |
Not yet rated by the users | | Total: 115 | | All time: 9,571 This week: 47 |
|
Description | | Author |
This package implements a pure PHP HTTP server using ReactPHP library.
It can start listening to HTTP requests on a given IP address and port number and processes the request by calling code that generates the HTTP responses.
Applications may register listener functions or controller classes to handle specific types of events like errors, requests sent to given URL path patterns, or form submission handling. Innovation Award
February 2021
Number 7 |
ReactPHP is a popular PHP library that can be used to develop application using asynchronous programming.
This allows applications to make more efficient use of the server machine CPUs, by executing tasks in parallel, while other tasks are waiting for a response from an external process or system, like for instance, a database server that takes time to a execute a query.
This package takes advantage of the ReactPHP library asynchronous programming features to implement an efficient custom HTTP server totally written in PHP.
The package allows developers to create Web applications just by creating handler functions or controller classes that process the requests for specific URLs and return the responses.
This way, PHP developers can write pure PHP Web applications without needing to use external Web server applications.
Manuel Lemos |
| |
|
|
Innovation award
Nominee: 9x |
|
Example
<?php
use App\Server;
use Psr\Log\NullLogger;
use React\Cache\ArrayCache;
use React\EventLoop\Factory;
use React\Http\Server as ReactHttpServer;
use React\Socket\Server as ReactSocketServer;
use WyriHaximus\React\Http\Middleware\WebrootPreloadMiddleware;
require 'vendor/autoload.php';
define('ROOT_DIR', __DIR__ . '/');
define('CONTROLLER_NAMESPACE', 'App\\Controller\\');
$loop = Factory::create();
$socket = new ReactSocketServer(8080, $loop);
$server = new ReactHttpServer(
$loop,
new WebrootPreloadMiddleware('public', new NullLogger(), new ArrayCache()),
new Server(),
);
$server->on('error', function (Throwable $exception){
echo($exception);
});
$server->listen($socket);
echo "Server running at http://127.0.0.1:8080\n";
$loop->run();
|
Details
_Simple ReactPHP Http Server_
A simple http server written with pure PHP and with the help of ReactPHP.
<ol>
<li><a href="#Installation">Installation</a></li>
</ol>
Installation
Make sure that you have composer installed
Clone repository
gti clone https://github.com/Ahmard/reactphp-simple-http-server
Navigate to the directory
cd reactphp-simple-http-server
Install composer dependencies
composer install
Start server
php server.php
Visit http://localhost:8181 and see.
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.