wikimedia / base-convert
Convert an arbitrarily-long string from one numeric base to another, optionally zero-padding to a minimum column width.
Requires
- php: >=7.2.9
Requires (Dev)
- mediawiki/mediawiki-codesniffer: 39.0.0
- mediawiki/mediawiki-phan-config: 0.11.1
- mediawiki/minus-x: 1.1.1
- ockcyp/covers-validator: 1.4.0
- php-parallel-lint/php-console-highlighter: 1.0.0
- php-parallel-lint/php-parallel-lint: 1.3.2
- phpunit/phpunit: ^8.5
README
Improved base_convert for PHP
PHP's base_convert
function does not handle large numbers well. This
library does, and can also optionally zero-pad to a minimum column width.
It is a drop-in replacement for base_convert, supporting base 2 through 36, and has additional features for padding and case.
The gmp and bcmath extensions are optionally used for improved performance.
Additional documentation about the library can be found on MediaWiki.org.
Usage
// Using padding, outputs 01010 \Wikimedia\base_convert( 'a', '36', '2', '5' )
Running tests
composer install --prefer-dist
composer test
History
This library was first introduced in MediaWiki 1.7 (r14777), and overhauled in MediaWiki 1.21 (9b9daadc46). It was split out of the MediaWiki codebase and published as an independent library during the MediaWiki 1.27 development cycle.