使PDO驱动的自动提示搜索框与UTF8数据一起使用

时间:2016-03-09 08:24:17

标签: pdo utf-8 autocomplete autosuggest utf8-decode

因此,有一个关于使用autosuggest here制作搜索框的精彩教程。它在我的Wordpress MySQL数据库上运行良好。

然而问题出在日语字符上......我在PHP中添加了以下行:$conn->exec("set names utf8");这使我能够正确显示日语结果,但是搜索功能没有正常工作:
它只显示整个表格中的所有结果,而不是过滤结果

这是我的完整代码:

if (isset($_GET['term'])){
    $return_arr = array();

    try {
        $conn = new PDO("mysql:host=".DB_SERVER.";port=8889;dbname=".DB_NAME, DB_USER, DB_PASSWORD."");
        $conn->exec("set names utf8");
        $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

        $stmt = $conn->prepare('SELECT supplier_company FROM wp_teleapo_supplier');
        $stmt->execute(array('term' => '%'.$_GET['term'].'%'));

        while($row = $stmt->fetch()) {
            $return_arr[] =  $row['supplier_company'];
        }

    } catch(PDOException $e) {
        echo 'ERROR: ' . $e->getMessage();
    }


    /* Toss back results as json encoded array. */
    echo json_encode($return_arr);
}

1 个答案:

答案 0 :(得分:0)

问题在于您的SQL语句,您没有where子句

$stmt = $conn->prepare('SELECT supplier_company FROM wp_teleapo_supplier WHERE `term` LIKE ?');
$stmt->execute(array('%'.$_GET['term'].'%'));