PHP code example of omerfarukbicer0446 / lang

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

    

omerfarukbicer0446 / lang example snippets




use Multilang\Multilang;

$lang = new Multilang("lang");
/*
    Ayarlarını değiştirmek istiyorsanız.
    
    $lang = new Multilang("lang",[
        'key' => 'lang',
        'default' => 'tr',
        'debug' => false
    ]);
*/



return [
    "key" => "o dile karşılığı",
    "key 2" => "o dile karşılığı 2"
];

echo $lang->load("key");

[
    'key' => 'lang', // GET değerinin key'ini ayarlar.
    'default' => 'tr', // Varsayılan dili ayarlar
    'debug' => false // Geliştirici modu açar kapatır.
];

// Kullanımı
$lang = new Multilang("lang",[
    'key' => 'lang',
    'default' => 'tr',
    'debug' => false
]);