PHP code example of lctrs / circular-buffer
1. Go to this page and download the library: Download lctrs/circular-buffer library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lctrs / circular-buffer example snippets
use Lctrs\CircularBuffer\CircularBuffer;
$buffer = CircularBuffer::ofCapacity(2);
$buffer->write('foo');
$buffer->read(); // foo
use Lctrs\CircularBuffer\CircularBuffer;
$buffer = CircularBuffer::prefilled(2, ['foo', 'bar']);