PHP code example of jaeger-app / language
1. Go to this page and download the library: Download jaeger-app/language 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/ */
jaeger-app / language example snippets
$lang = new Language;
$lang_path = '/path/to/language/files';
$lang->init($lang_path);
echo $lang->__('backup_success_message');
$paths = array(
'/path/to/language1',
'/path/to/language2',
'/path/to/language3'
);
$lang = new Language($paths);
$lang = array(
'backup_success_message' => 'Backup Complete!',
'backup_fail_message' => 'Backup Failed...',
);