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
Requires
- php: >=7.0
- marc-mabe/php-enum: >=2.2
This package is not auto-updated.
Last update: 2026-03-15 01:54:03 UTC
README
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.