Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
549 views
in Technique[技术] by (71.8m points)

Include files in array - PHP

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

you can use

<?php
"home" => Translator::t('app','en',"Home"),
"about" => Translator::t('app','en',"About me"),
"blog" => Translator::t('app','en',"Blog"),
 ?>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...