PHP changing language version

后端 未结 4 369
走了就别回头了
走了就别回头了 2021-01-16 13:51

I have a website which i want to create other language version. I don\'t want to create folder for each language. I was wondering it it\'s possible to add a combobox on each

4条回答
  •  盖世英雄少女心
    2021-01-16 14:24

    you mean something along the lines of

    if ($_GET['language']) {
      include $_GET['language'] . ".php";
    }
    

    and then save the languages in a php-file with there name, or a function depending on what you want to do with it

提交回复
热议问题