Php-PHP source code

Source: Internet
Author: User
Many cms have word segmentation functions, most of which are used in tag tags. I have written a word segmentation method myself without a powerful word dictionary, I downloaded a word dictionary and a word segmentation code on the Internet. Many cms files have word segmentation functions. Most of them are used in tag tags. I wrote a word segmentation method myself, without a powerful dictionary, I downloaded a dictionary and a word segmentation code online.

Script ec (2); script

The dictionary and code are combined for debugging to achieve the Chinese word segmentation... the function is not very powerful. Don't like it ..... Share the implemented code with you.

The Code is as follows:

Function get_keywords_str ($ content = '')
{
Require ('./phpanalysis. class. php ');
$ Pa = new PhpAnalysis ('utf-8', 'utf-8', false );
$ Pa-> LoadDict (); // Load
$ Pa-> SetSource ($ content); // pass in the content to be separated
$ Pa-> StartAnalysis (false );
$ Tags = $ pa-> GetFinallyResult (',', 6); // The Word Segmentation style is separated by commas (,) and the word segmentation length.
Return $ tags; www.111cn.net
}
$ Str = "Li Shimin is the second emperor of the Tang Dynasty ";
Echo "before word segmentation:". $ str ."
";
Echo "after word segmentation:". get_keywords_str ($ str );
?>

All Word Segmentation Source: http://www.111cn.net//demo/fenci.rar

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.