服务器端检测输入字符串lang

发布于 2024-10-29 05:43:04 字数 288 浏览 5 评论 0原文

可能的重复:
从 PHP 中的字符串检测语言

如何检测用户输入的语言细绳?

例如,字符串:

בדקה בלה בלה heb אחד שתйם שלוש

将给出结果:希伯来语

10x!

Possible Duplicate:
detect language from string in PHP

how can i detect the lang of the user input string?

for exemple the string:

בדיקה בלה בלה heb אחד שתיים שלוש

will give the result: hebrew

10x!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

許願樹丅啲祈禱 2024-11-05 05:43:04

最简单的方法是将字符串与词典数据库进行比较,根据该单词包含在哪个词典中,您可以找到该语言。

但是,需要注意的是,

  • 某些单词会出现在多种语言中。
  • 掌握您希望支持的所有语言的所有词典可能并不容易。

The easiest way would be to compare the string with a database of dictionaries, and depending on which dictionary the word is contained within, you can find the language.

However, caveats

  • some words will appear in many languages
  • Getting hold of all dictionaries for all the languages you wish to support may not be easy.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文