2020年6月11日

MySQL 全文搜索

摘要: 1.在mysql配置文件 my.ini里设置分词大小 ngram_token_size=2 2.给需要全文搜索的列添加FULLTEXT 引索 alter TABLE `table` add FULLTEXT KEY `ft_title` (`title`,`content`) WITH PARSER 阅读全文

posted @ 2020-06-11 20:31 沉淀物 阅读(63) 评论(0) 推荐(0) 编辑

php接收josn过滤html标识转为数组

摘要: $array=json_decode(htmlspecialchars_decode($json),true); htmlspecialchars_decode()过滤html标识 json_decode()第二个参数设置为true转array,false转object 阅读全文

posted @ 2020-06-11 19:52 沉淀物 阅读(99) 评论(0) 推荐(0) 编辑

导航