React PHP

1 개요[ | ]

React PHP
리액트 PHP
  • 이벤트-구동, 넌-블로킹 I/O을 제공하는 PHP 라이브러리, 프레임워크
  • 대략 node.js 스타일
 

2 예시: 웹서버 구현[ | ]

require 'vendor/autoload.php';

$app = function ($request, $response) {
    $response->writeHead(200, array('Content-Type' => 'text/plain'));
    $response->end("Hello World\n");
};

$loop = React\EventLoop\Factory::create();
$socket = new React\Socket\Server($loop);
$http = new React\Http\Server($socket, $loop);

$http->on('request', $app);
echo "Server running at http://127.0.0.1:1337\n";

$socket->listen(1337);
$loop->run();

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}