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:
|
<<: Detailed explanation of the installation commands and usage of Docker and FastDFS
>>: Summary of Vue 3 custom directive development
Table of contents 1. Server 2. Client 3. Testing ...
WEB development mainly consists of two interactio...
Table of contents 1. Reverse proxy preparation 1....
I have been learning about responsive design rece...
Recorded MySQL 5.7.9 installation tutorial, share...
Scrcpy Installation snap install scrcpy adb servi...
There is a big difference between the writing ord...
This article records the installation and configu...
The hyperlink <a> tag represents a link poin...
Table of contents 1. Environment Configuration 1....
Table of contents 1. After downloading, unzip it ...
I will explain the installation of MySQL under Wi...
This article mainly introduces the example analys...
1. Create a database: create data data _name; Two...
Preface: In Vue, props can be used to connect ori...