Home >Backend Development >PHP Tutorial > 关于PHP网页怎样把英文的网页变成法语,该如何处理

关于PHP网页怎样把英文的网页变成法语,该如何处理

WBOY
WBOYOriginal
2016-06-13 13:31:17990browse

关于PHP网页怎样把英文的网页变成法语
如题.我是想通过按一个按钮.把一个网站里的所有页面都从本来的英文换成法语.
我想问下这个能不能实现?如果不能,怎样将单个页面从英文换成法语?
求大神.

------解决方案--------------------
自定义多个语言多,如en_lang.php,fr_lang.php,把多所有变量分2种情况写在语言包中。

通过session来断定调用哪个文件。
------解决方案--------------------
静态2楼的可以,动态还是调用google的api吧。
------解决方案--------------------
用GG的翻译吧。

把下面代码加到你网页即可。

有几十种语言。

HTML code

<div id="google_translate_element"></div><script>
function googleTranslateElementInit() {
  new google.translate.TranslateElement({
    pageLanguage: 'en'
  }, 'google_translate_element');
}
</script>
<script src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<br><font color="#e78608">------解决方案--------------------</font><br>首先你需要把界面中的语言部分独立出来,比如用xml文件存储各种语种的信息,然后使用xslt技术动态切换界面语言。我有一个例子,是中英切换的,你可以参考一下:http://www.bacysoft.cn/MyApp/SubnettingTool/<br><br>这是一个PHP+XML+XLST做的子网划分的工具,右上角有切换中英文的按钮。 <div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn