PHP code example of webforge / translation
1. Go to this page and download the library: Download webforge/translation 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/ */
webforge / translation example snippets
use Webforge\Translation\ArrayTranslator;
$translations = Array(
'de'=>Array(
'hello'=>'Hallo Welt!'
),
'en'=>Array(
'hello'=>'Hello World!',
'how'=>'How are you?'
),
);
$translator = new ArrayTranslator('de', $translations, $fallback = array('en'));
print $translator->trans('hello')."\n"; // Hallo Welt!
print $translator->trans('how')."\n"; // How are you?
$translator->setLocale('en');
print $translator->trans('hello')."\n"; // Hello World!