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

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

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.

link|improve this answer
does that work with php 5.x ? – Roozbeh15 Mar 11 '11 at 19:52
feedback

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).

link|improve this answer
How do you do it in Perl exactly? – Roozbeh15 Mar 11 '11 at 19:53
I should have explained more... "There's a module for that!" use Lingua::Ident ... – Osama ALASSIRY Mar 17 '11 at 6:39
feedback

Your Answer

 
or
required, but never shown

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