Clone this repo:
  1. 982dd7d build: Updating composer dependencies by libraryupgrader · 3 months ago master
  2. e5fe0b5 Minor cleanup by Reedy · 3 months ago
  3. e24b96d build: Updating mediawiki/mediawiki-codesniffer to 43.0.0 by libraryupgrader · 5 months ago
  4. 3445723 build: Updating mediawiki/mediawiki-phan-config to 0.14.0 by libraryupgrader · 6 months ago
  5. c433099 build: Upgrade phpunit to 9.6.16 by James D. Forrester · 6 months ago

Latest Stable Version License

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.