pipeline(static function ($pipe) { $pipe->flushdb(); $pipe->incrby('counter', 10); $pipe->incrby('counter', 30); $pipe->exists('counter'); $pipe->get('counter'); $pipe->mget('does_not_exist', 'counter'); }); var_export($responses); /* OUTPUT: array ( 0 => Predis\Response\Status::__set_state(array( 'payload' => 'OK', )), 1 => 10, 2 => 40, 3 => true, 4 => '40', 5 => array ( 0 => NULL, 1 => '40', ), ) */