ltd-beget/ascii-table

There is no license information available for the latest version (1.0.4) of this package.

Php library with ascii table enum.

Installs: 258 168

Dependents: 1

Suggesters: 0

Security: 0

Stars: 3

Watchers: 14

Forks: 3

Open Issues: 4

pkg:composer/ltd-beget/ascii-table

1.0.4 2022-01-26 19:08 UTC

This package is not auto-updated.

Last update: 2025-10-11 23:48:55 UTC


README

Latest Stable Version Total Downloads Scrutinizer Code Quality License MIT

Php library with ascii table enum.

Installation

composer require ltd-beget/ascii-table

Usage

<?php
    require(__DIR__ . '/vendor/autoload.php');
    
    use LTDBeget\ascii\AsciiChar;
    
    $backspace = AsciiChar::BACKSPACE();
    $backspace->getName();
    $backspace->getValue();
    $backspace->is(AsciiChar::BACKSPACE);
    $backspace->isControlChar();
    $backspace->isHorizontalSpace();
    $backspace->isVerticalSpace();
    $backspace->isWhiteSpace();
    $backspace->isPrintableChar();
    $backspace->isLetter();
    $backspace->isDigit();
    $backspace->isExtended();

License

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