gpt4 book ai didi

php - 翻译算法

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:36:44 36 4
gpt4 key购买 nike

最近我正在研究将 PHP 网络应用程序从一种语言翻译成另一种语言的能力。好吧,我读过的大部分内容都涉及到有语言文件,然后像这样显示所选的文件:

en.lang.php:

<?php

$_TEXT = array();
$_TEXT['welcome'] = 'Welcome to My Application';

?>

fr.lang.php://法语(我用 Google 翻译了 =x)

<?php

$_TEXT = array();
$_TEXT['welcome'] = 'Bienvenue sur mon application Web';

?>

请问还有比这更好的工作流程或算法吗?因为值可能会插入到文本中等等 - 非常多毛的情况。任何帮助谢谢!

还要注意:这个应用程序必须跨平台工作(或者我应该说平台无关),因此不需要基于 PHP 4.4.2 的额外扩展

最佳答案

我建议使用 gettext ,它会让你的生活变得如此简单......

The gettext functions implement an NLS (Native Language Support) API which can be used to internationalize your PHP applications. Please see the gettext documentation for your system for a thorough explanation of these functions or view the docs at » http://www.gnu.org/software/gettext/manual/gettext.html.

关于php - 翻译算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1584039/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com