khisamutdinov / stringvalidator
A simple library for validating the string for matching opening and closing parentheses
dev-master
2018-03-14 18:56 UTC
Requires
- php: ^7.0
This package is not auto-updated.
Last update: 2025-06-14 20:48:54 UTC
README
Author:
Khisamutdinov Radik
Email:
mozg1984@gmail.com
Description:
A simple library for validating the string for matching opening and closing parentheses
Example of using:
$testString = "Some string for validating";
$stringValidator = new StringValidator($testString);
echo ($stringValidator->validate() ? "IS VALID" : "IS NOT VALID") . "\n";