如何使用 SQL 获取 MySQL 停用词
我知道可以借助 MySQL 中的 ft_stopword_file 变量来更改停用词文件。但我需要将这些停用词读入 PHP 的数组中。所以我的问题是,
有没有办法通过使用 SQL 查询查询数据库来获取停用词结果集?
I know that the stopword file could be changed with the help of the ft_stopword_file variable in MySQL. But I need read these stopwords into an array in PHP. So my questions is,
Is there a way to get the Stop Words resultset by querying a database with an SQL Query ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
停用词列表
在此文件storage/myisam/ft_static.c
中指定。因此,如果您希望它们位于 PHP 的数组中,只需读取该文件并将内容转换为您需要的格式即可。除此之外,我认为没有其他方法可以从 MySQL 查询列表。另外,请参阅停用词手册The list of
stop-words
is specified in this filestorage/myisam/ft_static.c
. So if you want them in a array in PHP, just read the file and convert the contents into the format you need. Apart from this, I dont think there is any other way to query the list from MySQL. Also, please see the stop-words manual不,但是如果您通过设置 ft_stopword_file 变量设置了停用词文件的路径,那么您就知道该文件在哪里,并且可以直接在 PHP 脚本中读取它。
No, but if you've set the path to the stopword file by setting the ft_stopword_file variable, then you know where that file is and can read it in your PHP script directly.