senseexception/intl-format

A wrapper library for PHP intl messages in sprintf style

3.1.0 2023-03-26 21:05 UTC

This package is auto-updated.

Last update: 2024-03-05 23:27:38 UTC


README

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

Latest Stable Version PHP from Packagist Tests Static Analysis License

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