intl-format

A wrapper library for PHP to format and internationalize values in messages like sprintf

MIT License

Downloads
2.8K
Stars
12
Committers
2

Intl-Format

A wrapper library for PHP to format and internationalize values in messages like sprintf

Why using this library?

Internationalisation is a very important matter when a PHP project covers more than just one country. Every country has its own format for numbers, date or time. The Intl component offers functionality to handle all the formats you need, but not always in a simple way.

This library formats messages using the Intl component of PHP and offers a sprintf-like API.

Example:

echo $intlFormat->format('Today\'s number is %number', 1000.3);
// echo "Today's number is 1'000,3" in case of locale de_CH
// echo "Today's number is 1,000.3" in case of locale en_US

It is also easy extensible with your own custom formats.

Documentation

Read more about this library in the documentation.

Does it affect GDPR somehow?

Intl-Format itself uses the given data (e.g. timezone, locale) only for formatting purposes with the help of the PHP Intl extension.

Installation

You can install this with Composer.

composer require senseexception/intl-format
Package Rankings
Top 11.51% on Packagist.org
Badges
Extracted from project README
PHP from Packagist Tests Static Analysis