gpt4 book ai didi

php - 为较大的句子分配标签?

转载 作者:行者123 更新时间:2023-11-29 12:49:21 25 4
gpt4 key购买 nike

我有两个大约 15 个单词大小的字符串。如何搜索这些词才能自动分配标签?

我认为我将文本保存到 mySQL 原始文件中,转换为小写,删除外来字符(html,php,javascript,...),然后使用 mySQL 查询 WHERE text LIKE %word%

如何清理文字?

最佳答案

假设您的句子仅用空格分隔单词,那么我们可以将每个单词拆分为数组的元素。然后您可以循环该数组以使用 SQL 进行搜索。

$words = explode(' ', $sentence);
foreach($words as $word){
$word = strtolower($word);
$query = "SELECT text from tableName WHERE text LIKE %{$word}%";
//run your query, etc.
}

关于php - 为较大的句子分配标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25003349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com