我想知道一个字符串是否包含来自MySQL数据库的单词,但是无论如何strpos都不匹配。
<?php
include_once 'conexion.php';
$query_groseria = "SELECT groseria FROM groseria";
$res_groseria = mysqli_query($conexion, $query_groseria);
$str1 = "puta en la esquina";
while($row = mysqli_fetch_array($res_groseria)){
if(strpos($str1, $row['groseria']) !== false){
$wea = 0;
}else{
$wea = 1;
}
}
echo $wea;
?>
在这种情况下,我有一个字符串($ str1),其中包含一个存在于我的数据库(“ puta”)中的单词。 我希望 $ wea 为 0 ,但是strpos与 row ['groseria'] 不匹配 $ str 。 可能是什么? 我究竟做错了什么? 还有其他方法可以做我想做的事吗?