如何在 PHP 中检测文档的语言?

发布于 2024-07-08 05:50:46 字数 160 浏览 13 评论 0原文

此处已经回答了基础知识。 但是是否有一个预构建的 PHP 库与 CPAN 中的 Lingua::Identify 执行相同的操作?

The basics have already been answered here. But is there a pre-built PHP lib doing the same as Lingua::Identify from CPAN?

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

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

发布评论

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

评论(2

醉梦枕江山 2024-07-15 05:50:46

我以前使用过一个 PEAR 包 Text_LanguageDetect 。 把工作做得足够好。 我不确定还有其他更成熟的库。

There's a PEAR package Text_LanguageDetect that I've used before. Get's the job done well enough. I'm not sure of any other libs that are more mature.

浊酒尽余欢 2024-07-15 05:50:46

1- 你可以自己做(困难的方法) - 通过查看字符和 n-gram 频率来检测语言和代码页。 您将需要大量“训练”数据,但这是可行的。

2-您可以运行一个 perl 脚本来为您进行检测(更容易)。

1- You could do it yourself (the hard way) - detecting both language and codepage by looking at character and n-gram frequencies. You would need lots of "training" data, but it's doable.

2- You could run a perl script to do the detection for you(much easier).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文