mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 23:35:45 +01:00
27 lines
396 B
Markdown
27 lines
396 B
Markdown
# Graph
|
|
|
|
- `Graph()`
|
|
- `Graph(string ...$additionalChars)`
|
|
|
|
Validates if all characters in the input are printable and actually creates
|
|
visible output (no white space).
|
|
|
|
```php
|
|
v::graph()->validate('LKM@#$%4;'); // true
|
|
```
|
|
|
|
## Categorization
|
|
|
|
- Strings
|
|
|
|
## Changelog
|
|
|
|
Version | Description
|
|
--------|-------------
|
|
0.5.0 | Created
|
|
|
|
***
|
|
See also:
|
|
|
|
- [Printable](Printable.md)
|
|
- [Punct](Punct.md)
|