bvp / trimmer
Trimmer in the Boatrace Venture Project.
1.0.0
2025-01-11 11:32 UTC
Requires
- php: ^8.1
- php-di/php-di: ^6.1 || ^7.0
Requires (Dev)
- phpunit/phpunit: ^10.1
README
Installation
composer require bvp/trimmer
Usage
<?php require __DIR__ . '/vendor/autoload.php'; use Boatrace\Venture\Project\Trimmer; var_dump(Trimmer::trim(null)); // NULL var_dump(Trimmer::trim(' 競艇 ')); // string(6) "競艇" var_dump(Trimmer::ltrim(null)); // NULL var_dump(Trimmer::ltrim(' 競艇 ')); // string(7) "競艇 " var_dump(Trimmer::rtrim(null)); // NULL var_dump(Trimmer::rtrim(' 競艇 ')); // string(7) " 競艇"
License
Trimmer in the Boatrace Venture Project is open source software licensed under the MIT license.