kisphp / tools
Kisphp tools library
2.5.1
2025-02-01 08:33 UTC
Requires
- php: >=7.4|>=8.0
- ext-json: *
- guzzlehttp/guzzle: >=7.0
- symfony/mime: *
Requires (Dev)
- doctrine/orm: ~2.5
- phpspec/prophecy: ^1.19
- phpunit/phpunit: ~9.5
- symfony/http-foundation: *
- symfony/var-dumper: *
This package is not auto-updated.
Last update: 2025-02-01 08:33:48 UTC
README
Strings
use Kisphp\Utils\Strings;
Strings::niceUrlTitle("Hello world (123)"); // hello-world-123
Strings::rankNumber(20); // 00020
Strings::rankNumber(20, 3); // 020
Strings::generateCode(10); // xpgUrw8ZBL (always different)
Strings::generateCode(4); // NhEB (always different)
Files
use Kisphp\Utils\Files;
echo Files::fileSize(12345); // 12.06 KB
echo Files::fileSize(1234567); // 1.18 MB