tjm / utils
PHP utilities
v0.0.2
2022-11-21 00:54 UTC
Requires
- php: >=5.3.3
This package is auto-updated.
Last update: 2023-11-21 02:57:32 UTC
README
General PHP utilities. Currently only contains:
- a method for deeply merging:
$arr = TJM\Component\Utils\Arrays::deepMerge([], []);
- a base-n converter to convert from / to integers and shorter strings:
$str = (new TJM\Component\Utils\BaseNConverter('newBase64'))->to(123);