Join 4,000+ others and never miss out on new tips, tutorials, and more.
4.x is outdated, please check the latest version 22.x
Latest version:
pecl install openswoole-22.1.2
y--- layout: docs title: Swoole\Atomic\Long->sub permalink: /docs/4.x/modules/swoole-atomic-long-sub function: delc: Swoole\Atomic\Long->sub ( int $value = 0 ) params: - name : value desc : The subtraction value to the atomic counter.
Subtract a value to the a Atomic
counter.
<?php
$counter = new Swoole\Atomic\Long(123);
echo $counter->add(12)."\n";
echo $counter->sub(11)."\n";
echo $counter->cmpset(122, 999)."\n";
echo $counter->cmpset(124, 999)."\n";
echo $counter->get()."\n";