使用来自MySQL DB的utf8_unicode_ci泰语语言数据搜索输入GET / POST数据无法理解

时间:2017-10-01 17:09:35

标签: php search utf-8 thai

我在MySQL数据库中有一个泰语语言内容,其中包含排序规则utf8_unicode_ci

我已使用以下内容在我的网页上正确显示

<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<style type="text/css">
.thai {
font-family:Tahoma, Arial Unicode MS;
font-size: 2em;
</style>
</head>
<body>
<div id="content"><span class="thai"><?php echo $row['description2'];?></span></div>

我的数据库连接文件包含以下代码

mysqli_query($connection, "SET NAMES UTF8");

现在问题是它显示正确,但是如果有人尝试用泰语搜索,但我的搜索框无法搜索它,但是正确搜索数据库中存在的英文内容

以下是我的SEARCH代码

<form method="GET" action="index.php" accept-charset="UTF-8">
<input class="thai" type="text" charset="UTF-8" class="keyword" value="Search" name="search" id="q" onFocus="if(this.value==this.defaultValue) this.value='';" onBlur="if(this.value=='') this.value=this.defaultValue;" /><br />

</form>

<?php
require_once('inc/connect.php');

//NOT SURE IF THE FOLLOWING DECODING IS MAKING ANY SENSE, I still Get the -No result found- for thai language, but it made the boolean error go away

$search1=$_GET['search'];
$search=utf8_decode($search1);

$select1="SELECT * FROM products where id like '%$search%' || title like '%$search%' || size like '%$search%' ||description1 like '%$search%'|| description2 like '%$search%' order by id asc";



 $result=mysqli_query($connection, $select1);
    $num=mysqli_num_rows($result);
 if($num > 0)
 {
  while($row=mysqli_fetch_array($result))

  {
    $oid=$row['id'];

 echo $row['title'];




  }
  }
else{
  $ertx="No Records Found In Database";
 echo $ertx;
 }
?>

1 个答案:

答案 0 :(得分:0)

函数utf8_decode不支持泰语字符的转换,因为它转换为PHP的格式是ISO-8859-1,这是一个ASCII字符集(因此不支持泰语字符)。

这意味着泰语字符将替换为&#34;?&#34;因此,除非您有带问号的条目,否则不会找到任何结果。

参考:http://php.net/manual/en/function.utf8-decode.php

布尔错误发生在哪里?这将有助于社区找到解决问题的方法。

使用:

error_reporting(E_ALL);
ini_set('display_errors', 1);

将启用PHP运行时错误

编辑: 尝试使用此代码来获取任何mysqli错误:

if (mysqli_connect_errno())
{
    echo "Failed to connect to MySQL: " . mysqli_connect_error();
    //you need to exit the script, if there is an error
    exit();
}

来自https://stackoverflow.com/a/22582272/5287820