0

这是查询:

$stmt = $dbconnect->prepare("SELECT `title`,`description`,`postid` FROM `posttd` WHERE MATCH `title` AGAINST ( ? IN BOOLEAN MODE)");
$stmt->bind_param('s', $value);
$stmt->execute();

的值为$value'test1'、'other'和'test2'

值 'other' 是 mysql 停用词。因此,当它通过查询时,它会产生任何结果。

只是想知道如何抓住它,以便我可以将它从$value阵列中取出。

var_dump($stmt->execute());将放弃bool(true)所有三个。

在查询中运行它之前,我尽可能不想过滤$valuefor 停用词。

var_dump($stmt)之后$stmt->execute();将导致以下结果:

test1 var_dump

object(mysqli_stmt)#2 (9) { ["affected_rows"]=> int(-1) ["insert_id"]=> int(0) ["num_rows"]=> int(0) ["param_count"]=> int(1) ["field_count"]=> int(3) ["errno"]=> int(0) ["error"]=> string(0) "" ["sqlstate"]=> string(5) "00000" ["id"]=> int(1) } 

test2 var_dump

object(mysqli_stmt)#2 (9) { ["affected_rows"]=> int(-1) ["insert_id"]=> int(0) ["num_rows"]=> int(0) ["param_count"]=> int(1) ["field_count"]=> int(3) ["errno"]=> int(0) ["error"]=> string(0) "" ["sqlstate"]=> string(5) "00000" ["id"]=> int(3) } 

其他 var_dump

object(mysqli_stmt)#6 (9) { ["affected_rows"]=> int(-1) ["insert_id"]=> int(0) ["num_rows"]=> int(0) ["param_count"]=> int(1) ["field_count"]=> int(3) ["errno"]=> int(0) ["error"]=> string(0) "" ["sqlstate"]=> string(5) "00000" ["id"]=> int(2) } 

唯一的区别是object(mysqli_stmt)#6

有任何想法吗?

4

3 回答 3

0

你应该只使用

if($res = $stmt->get_result()) {
    //this means query returned some rows
}
else {
    //and this means the result was empty
}

而且,是的,它确实需要使用 mysqlnd(本机驱动程序)编译您的 php,否则您将收到未声明mysqli_stmt::get_result()的函数错误或类似的东西。

于 2013-04-29T13:26:05.000 回答
0

所以我无法使用内置函数来捕捉它。相反,我做了一个简单的测试来捕捉空结果。这里是:

$bindarray = array('+test1','+other','+test2');
foreach($bindarray as $key=>$value)
{
echo $value; // NOTE1: This echo prints +test1, +other, and +test2
$stmt = $dbconnect->prepare("SELECT `title`,`description`,`postid` FROM `posttd` WHERE MATCH `title` AGAINST ( ? IN BOOLEAN MODE)");
$stmt->bind_param('s', $value);
echo 'Bind:'.$value; // NOTE2: This echo prints +test1, +other, and +test2
$stmt->execute();
echo 'Execute:'.$value; // NOTE3: This echo prints +test1, +other, and +test2
$stmt->bind_result($rtitle,$rdescription,$rpostid);
    while($stmt->fetch())
    {
        echo 'Fetch:'.$value; // NOTE4: This echo prints +test1 and +test2 ONLY
        if(!empty($value))
        {
            if(!in_array($value, $goodvalues))
            {
                array_push($goodvalues,$value);
            }
        }
    }
}

因此,正如您在NOTE4 $value上看到的那样,它没有获取任何内容 ( $stmt->fetch()),因此它没有通过 while 循环,因此它没有包含在$goodvalues数组中,因此我能够将停用词与数组分开。

如果您能够使用内置函数捕获停用词,请。分享。

谢谢

于 2013-04-30T04:46:54.617 回答
0

用这个

 if($stmt->rowCount() > 0) {
   // do what you want here
}

上面的语句确保如果有数据,那么只有它会进入条件。

于 2013-04-29T11:29:12.977 回答