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
Requires
- php: >=8.0
- marc-mabe/php-enum: >=2.2,<5
README
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.