MySQL full-text search Chinese solution and example code

MySQL full-text search Chinese solution and example code

MySQL full text search Chinese solution

     Recently, the company project requires such a function, which is to search for Chinese in the database. It is very tricky. I searched the Internet for information and found similar articles. I record them here and hope they can help everyone.

Example code:

<?php
/*
MySQL full-text search Chinese solution!
*/
error_reporting(E_ERROR | E_WARNING | E_PARSE);
ini_set('display_errors', '1');
//Database support class SaeMysql{
//phpmysql operation class}
$DBS=new SaeMysql;
//Add data to echo '2';
/*Create a data table*/
$DBS->runSql('CREATE TABLE IF NOT EXISTS `ces_articles` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT \'\',
`url` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
PRIMARY KEY (`id`),
FULLTEXT KEY `url` (`url`)
)ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC');
/*Add data*/
$title='I love you all, hello everyone';
$DBS->runSql('INSERT INTO `ces_articles` (id,title,url) VALUES (0,\''. $title.'\',\''.str_replace('\u','u',trim(json_encode($title))).'\')');
$title='What is China';
$DBS->runSql('INSERT INTO `ces_articles` (id,title,url) VALUES (0,\''. $title.'\',\''.str_replace('\u','u',trim(json_encode($title))).'\')');
$title='http://ask.1912news.com';
$DBS->runSql('INSERT INTO `ces_articles` (id,title,url) VALUES (0,\''. $title.'\',\''.str_replace('\u','u',trim(json_encode($title))).'\')');
$title='Question and Answer System';
$DBS->runSql('INSERT INTO `ces_articles` (id,title,url) VALUES (0,\''. $title.'\',\''.str_replace('\u','u',trim(json_encode($title))).'\')');
$title='1912.com';
$DBS->runSql('INSERT INTO `ces_articles` (id,title,url) VALUES (0,\''. $title.'\',\''.str_replace('\u','u',trim(json_encode($title))).'\')');
$title = '09 Network';
$DBS->runSql('INSERT INTO `ces_articles` (id,title,url) VALUES (0,\''. $title.'\',\''.str_replace('\u','u',trim(json_encode($title))).'\')');
//search:
$_GET['q']="中国";
echo 'q';
if(isset($_GET['q'])){$sql=' match(url) against (\''.str_replace('\u','u',trim(json_encode($_GET['q']))).'\' IN BOOLEAN MODE)';}
$query = $DBS->getData('SELECT * FROM `ces_articles` where '.$sql.' LIMIT 10');
echo 'q';
if($query){
foreach ($query as $article){
echo $article['id'];
}
}

?>

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • In-depth analysis of Chinese full-text search in MySQL 5.7
  • Mysql implementation of full-text search and keyword scoring method example
  • MySQL full-text search usage examples
  • MySQL 5.7.25 full-text search tutorial

<<:  Detailed explanation of the installation commands and usage of Docker and FastDFS

>>:  Summary of Vue 3 custom directive development

Blog    

Recommend

Introduction to NFS service construction under Centos7

Table of contents 1. Server 2. Client 3. Testing ...

Basic ideas for finding errors in Web front-end development

WEB development mainly consists of two interactio...

Nginx reverse proxy learning example tutorial

Table of contents 1. Reverse proxy preparation 1....

Tutorial on installing MySQL 5.7.9 using RPM package under CentOS 7

Recorded MySQL 5.7.9 installation tutorial, share...

Simply understand the writing and execution order of MySQL statements

There is a big difference between the writing ord...

MySQL 8.0.15 installation and configuration graphic tutorial

This article records the installation and configu...

Detailed explanation of the TARGET attribute of the HTML hyperlink tag A

The hyperlink <a> tag represents a link poin...

Detailed process of NTP server configuration under Linux

Table of contents 1. Environment Configuration 1....

Detailed tutorial on installing MySQL 8.0.19 in zip version on win10

Table of contents 1. After downloading, unzip it ...

Docker deployment springboot project example analysis

This article mainly introduces the example analys...

Basic commands for MySQL database operations

1. Create a database: create data data _name; Two...

Introduction to the usage of props in Vue

Preface: In Vue, props can be used to connect ori...