I am looking for an automatic language identification tool written in php. The tool should receive as input a string, and output the name of the (natural) language the string is written in. A perl example is TextCat, ported to Java by Knallgrau New Media Solutions. Does anyone know of a PHP port? Or another similar PHP tool?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

You can use Pear package Text_LanguageDetect. It recognizes 52 natural languages using 3-gram frequencies.

link|improve this answer
Thanks a lot Juri. It also detects Tagalog. Just what I needed. – Yuval F Dec 15 '08 at 7:52
feedback

Not in php, unfortunately. But maybe you'll give half-credit for Natural Language Processing in Python, which is by far the most extensive NLP resource I've come across, with a tutorial in Python built in. And Python is closer to plug-compatible with php than either perl or java.

link|improve this answer
Thanks. BTW, I think you sent a local link instead of an HTTP URL. If worst comes to worst, I will google for the python resource... – Yuval F Dec 14 '08 at 8:05
Fixed. Thanks :( – le dorfier Dec 14 '08 at 8:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.