I have this code in main php file and I want to include 2 or more translation files
<?php
$lang = array(
'en' => array(
include ('nav-translation/en.php');
include ('home-translation/en.php');
),
'lv' => array(
include ('nav-translation/lv.php');
include ('home-translation/lv.php');
),
);
?>
and there is one of the files "nav-translation/en.php" that I want to include into main file
<?php
"home" => "Home",
"about" => "About me",
"blog" => "Blog",
?>
Thanks!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…