我正在尝试使用 PDO 连接到 Sphinx,但它不起作用,我收到此错误:
SQLSTATE[HY000] [2054] Server sent charset unknown to the client. Please, report to the developers
这是我的连接方式:
$pdo = new PDO("mysql:host=xxxxxx;port=9306;", "", "");
我曾经用普通的mysql来做这件事,而且以前可以工作,但现在由于某种原因它不能工作。
这曾经有效(现在它没有,甚至没有给出错误):
$sql = mysql_connect("xxxxxx:9306", "", "");