Skip to Content
Mastering PHP 7
book

Mastering PHP 7

by Branko Ajzele
June 2017
Intermediate to advanced
536 pages
9h 49m
English
Packt Publishing
Content preview from Mastering PHP 7

Writing custom operators

Though RxPHP provides over 40 operators for us to use, sometimes, there may be a need to use an operator that does not exist. Consider the following case:

<?phprequire_once __DIR__ . '/vendor/autoload.php';use \Rx\Observer\CallbackObserver;use \React\EventLoop\Factory;use \Rx\Scheduler;$loop = Factory::create();Scheduler::setDefaultFactory(function () use ($loop) {    return new Scheduler\EventLoopScheduler($loop);});// correct$users = serialize(['John', 'Mariya', 'Marc', 'Lucy']);// faulty// $users = str_replace('i:', '', serialize(['John', 'Mariya', 'Marc', 'Lucy']));$observer = new CallbackObserver(    function ($value) {        echo 'Observer.$onNext: ', print_r($value, true), PHP_EOL;    },    function (\Throwable $t) {        echo  ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning PHP 7

Learning PHP 7

Antonio L Zapata (GBP)
Upgrading to PHP 5

Upgrading to PHP 5

Adam Trachtenberg

Publisher Resources

ISBN: 9781785882814Supplemental Content