PHP Package: symfony/intl

Symfony Intl component provides a set of classes to work with internationalization and localization in PHP applications.

Current Version: 7.3.4
Last Updated: 2025-09-27
PHP Requirement: >=8.2
Dependencies:
symfony/polyfill-intl-icu
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Symfony Intl component offers a wide range of features to handle internationalization and localization tasks, such as formatting numbers, currency, dates, and translations. It simplifies the process of adapting your application to different languages, regions, and cultures, ensuring a seamless user experience across the globe.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 7.3.4

Download Download v7.3.4

Previous Versions

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/symfony/intl/7.3.4/loader.php';
require_once 'libs/symfony/polyfill-intl-icu/1.33.0/loader.php';

use Symfony\Component\Intl\Collator\Collator;
use Symfony\Component\Intl\DateFormatter\IntlDateFormatter;

$obj = new Collator();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.