如何使用 SQL 获取 MySQL 停用词

发布于 2024-11-18 13:16:31 字数 122 浏览 3 评论 0原文

我知道可以借助 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暮色兮凉城 2024-11-25 13:16:31

停用词列表在此文件storage/myisam/ft_static.c中指定。因此,如果您希望它们位于 PHP 的数组中,只需读取该文件并将内容转换为您需要的格式即可。除此之外,我认为没有其他方法可以从 MySQL 查询列表。另外,请参阅停用词手册

The list of stop-words is specified in this file storage/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

雪若未夕 2024-11-25 13:16:31

不,但是如果您通过设置 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文