golding/ascii-table

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

Php library with ascii table enum.

v1.0.2 2022-05-18 12:22 UTC

This package is auto-updated.

Last update: 2024-04-18 17:08:55 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

Php library with ascii table enum.

Installation

composer require golding/ascii-table

Usage

<?php
    require(__DIR__ . '/vendor/autoload.php');
    
    use Golding\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.