Gitpedia

RxPHP

Reactive extensions for PHP

From ReactiveX·Updated May 23, 2026·View on GitHub·

Reactive extensions for PHP. The reactive extensions for PHP are a set of libraries to compose asynchronous and event-based programs using observable streams. The project is written primarily in PHP, distributed under the MIT License license, first published in 2016. It has gained significant community traction with 1,732 stars and 141 forks on GitHub. Key topics include: asynchronous, observables, reactivex, rxphp.

Latest release: 2.1.0
October 27, 2025View Changelog →

RxPHP

Reactive extensions for PHP. The reactive extensions for PHP are a set of
libraries to compose asynchronous and event-based programs using observable
streams.

CI status
Coverage Status

Example

php
$source = \Rx\Observable::fromArray([1, 2, 3, 4]); $source->subscribe( function ($x) { echo 'Next: ', $x, PHP_EOL; }, function (Exception $ex) { echo 'Error: ', $ex->getMessage(), PHP_EOL; }, function () { echo 'Completed', PHP_EOL; } ); //Next: 1 //Next: 2 //Next: 3 //Next: 4 //Completed

Try out the demos

bash
$ git clone https://github.com/ReactiveX/RxPHP.git $ cd RxPHP $ composer install $ php demo/interval/interval.php

Have fun running the demos in /demo.

note: When running the demos, the scheduler is automatically bootstrapped. When using RxPHP within your own project, you'll need to set the default scheduler.

Installation

  1. Install an event loop. Any event loop should work, but the ReactPHP event loop is recommended.
bash
$ composer require react/event-loop
  1. Install RxPHP using composer.
bash
$ composer require reactivex/rxphp
  1. Write some code.
PHP
<?php require_once __DIR__ . '/vendor/autoload.php'; use Rx\Observable; use React\EventLoop\Factory; use Rx\Scheduler; $loop = Factory::create(); //You only need to set the default scheduler once Scheduler::setDefaultFactory(function() use($loop){ return new Scheduler\EventLoopScheduler($loop); }); Observable::interval(1000) ->take(5) ->flatMap(function ($i) { return Observable::of($i + 1); }) ->subscribe(function ($e) { echo $e, PHP_EOL; }); $loop->run();

Working with Promises

Some async PHP frameworks have yet to fully embrace the awesome power of observables. To help ease the transition, RxPHP has built in support for ReactPHP promises.

Mixing a promise into an observable stream:

PHP
Observable::interval(1000) ->flatMap(function ($i) { return Observable::fromPromise(\React\Promise\resolve(42 + $i)); }) ->subscribe(function ($v) { echo $v . PHP_EOL; });

Converting an Observable into a promise. (This is useful for libraries that use generators and coroutines):

PHP
$observable = Observable::interval(1000) ->take(10) ->toArray() ->map('json_encode'); $promise = $observable->toPromise();

Additional Information

License

RxPHP is licensed under the MIT License - see the LICENSE file for details

Contributors

Showing top 12 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from ReactiveX/RxPHP via the GitHub API.Last fetched: 6/1/2026