ltd-beget/stringstream

Php Stringstream data structure.

Installs: 253 402

Dependents: 3

Suggesters: 0

Security: 0

Stars: 3

Watchers: 18

Forks: 3

Open Issues: 3

pkg:composer/ltd-beget/stringstream

v2.0.0 2022-01-26 16:24 UTC

This package is not auto-updated.

Last update: 2025-10-03 08:19:58 UTC


README

Latest Stable Version Total Downloads Scrutinizer Code Quality License MIT

Php Stringstream data structure.

Installation

composer require ltd-beget/stringstream

Usage

<?php
    use LTDBeget\stringstream\StringStream;
    
    require(__DIR__ . '/vendor/autoload.php');
    
    $stream = new StringStream("Hello, World!");
    
    do {
        if($stream->currentAscii()->isWhiteSpace()) {
            $stream->ignoreWhitespace();
        } else {
            echo $stream->current().PHP_EOL;
            $stream->next();
        }
    
    } while (! $stream->isEnd());

License

released under the MIT License. See the bundled LICENSE file for details.