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.

1.0.4 2022-01-26 19:08 UTC

This package is not auto-updated.

Last update: 2024-10-26 19:00:05 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.