PHP - strstr() 不能很好地与 MySql 配合使用

发布于 2024-11-25 04:53:32 字数 774 浏览 0 评论 0原文

我的数据库中有这些表:

表 A:

id | haystack
-------------
1  | 682,401
2  | 351

表 B:

id | needle
-------------
1  | 352
2  | 682
3  | 978

我想做的就是检查表 A 中的大海捞针是否包含表 B 中的任何针。我用 PHP 编写了这段代码:

$res_A = mysql_query('SELECT * FROM table_A');
while($row_A = mysql_fetch_array($res_A)){
    $res_B = mysql_query('SELECT * FROM table_B');
    while($row_B = mysql_fetch_array($res_A)){
        if(strlen(strstr($row_A['haystack'], $row_B['needle']) > 0)){
            echo 'I found this needle: '.$row_B['needle'].' in this haystack: '.$row_A['haystack'].'<br />';
        }
    }
}

但是,它不起作用。我一整天都想弄清楚,但没有机会。我需要提到的是,haystack 和 Needle 列都是 Varchar。

你能帮我解决这种情况吗? 提前致谢!

I have these tables in my DB:

TABLE A:

id | haystack
-------------
1  | 682,401
2  | 351

TABLE B:

id | needle
-------------
1  | 352
2  | 682
3  | 978

All I want to do is to check if a haystack from table A contain any needle from table B. I did this code in PHP:

$res_A = mysql_query('SELECT * FROM table_A');
while($row_A = mysql_fetch_array($res_A)){
    $res_B = mysql_query('SELECT * FROM table_B');
    while($row_B = mysql_fetch_array($res_A)){
        if(strlen(strstr($row_A['haystack'], $row_B['needle']) > 0)){
            echo 'I found this needle: '.$row_B['needle'].' in this haystack: '.$row_A['haystack'].'<br />';
        }
    }
}

But, it doesn't work. I tried to figure it out all day, but no chance. I need to mention that the haystack and needle columns are Varchars.

Can you help me with this situation?
Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

睫毛上残留的泪 2024-12-02 04:53:32

为什么不把它们全部保存在 SQL 服务器上呢?更容易、更快。

从干草、针中选择 * WHERE hay.haystack LIKE CONCAT('%',needle.needle,'%');

Why don't you keep it all on the SQL server? Much easier and faster..

SELECT * from hay, needle WHERE hay.haystack LIKE CONCAT('%',needle.needle,'%');

心作怪 2024-12-02 04:53:32

注意 strlen(strstr($row_A['haystack'], $row_B['needle']) > 0) 上的括号位置

尝试:if(strlen(strstr($row_A[ 'haystack'], $row_B['needle'])) > 0)

您正在包括 >; 0 在对 strlen 的调用中

Notice your Parenthesis placement on strlen(strstr($row_A['haystack'], $row_B['needle']) > 0)

Try: if(strlen(strstr($row_A['haystack'], $row_B['needle'])) > 0)

You are including the > 0 in the call to strlen

仄言 2024-12-02 04:53:32

试试这个:

$res_A = mysql_query('SELECT haystack FROM table_A');
while($row_A = mysql_fetch_array($res_A)){
    $res_B = mysql_query("SELECT needle FROM table_B WHERE needle = '" . $row_A['haystack'] . "'");
    if(mysql_num_rows($res_B) > 0) {  
            echo 'I found this needle: '.$row_B['needle'].' in this haystack: '.$row_A['haystack'].'<br />';
    }
}

Try this:

$res_A = mysql_query('SELECT haystack FROM table_A');
while($row_A = mysql_fetch_array($res_A)){
    $res_B = mysql_query("SELECT needle FROM table_B WHERE needle = '" . $row_A['haystack'] . "'");
    if(mysql_num_rows($res_B) > 0) {  
            echo 'I found this needle: '.$row_B['needle'].' in this haystack: '.$row_A['haystack'].'<br />';
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文