如何在 PHP 中检测文档的语言?
此处已经回答了基础知识。 但是是否有一个预构建的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我以前使用过一个 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.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).