-
Notifications
You must be signed in to change notification settings - Fork 0
Simple usage
Bahriddin Mo'minov edited this page Dec 16, 2021
·
1 revision
<?php
require 'vendor/autoload.php';
$i18n = new \MrMuminov\PhpI18n\I18n([
'languages' => ['en', 'uz'],
'language' => 'en',
]);
echo $i18n->get('Home');
// Output: "Home"
echo $i18n->get('Hello %s', 'John');
// Output: "Hello John"