1. Go to this page and download the library: Download samsonos/php_i18n library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
samsonos / php_i18n example snippets
// SamsonPHP Configuration
locales
setlocales('ru', 'fr');
// Run
s()->composer()->start();
<h1>This is ENGLISH view file</h1>
<h1>This is RUSSIAN view file</h1>
function test()
{
m()->view('test')->title('Localization test');
}