ltd-beget / ascii-table
Php library with ascii table enum.
Installs: 80 390
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 15
Forks: 3
Open Issues: 4
Requires
- php: >=7.0
- marc-mabe/php-enum: >=2.2
This package is not auto-updated.
Last update: 2025-03-01 20:40:22 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.