PHP code example of mmqfilho / languages

1. Go to this page and download the library: Download mmqfilho/languages 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/ */

    

mmqfilho / languages example snippets



or use autoload composer
anguage as Lang;

$objLang->__set('default_language', 'en');

$objLang->__set('recursiveDirCount', 3);

echo $objLang->load('index', 'welcome');
or with an array with one or many variables
echo $objLang->load('index', 'yourName', array('Marcos'));
echo $objLang->load('index', 'yourFullName', array('Marcos', 'Menezes'));