ltd-beget / ascii-table
Php library with ascii table enum.
Installs: 76 122
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 14
Forks: 4
Open Issues: 5
Requires
- php: >=7.0
- marc-mabe/php-enum: >=2.2
This package is not auto-updated.
Last update: 2024-10-26 19:00:05 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.