从我的数据库打印出内容抛出了一个 php 函数,但它无法识别该语言(希伯来语)?
输出是一组问号,所有表都编码为 utf8_general_ci..
the output is a set of question marks the all the tables are encoded utf8_general_ci..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要设置连接的字符集。
你这样做:
mysql_query('设置名称 utf8');
在查询之前添加此代码。
无论如何,您最好使用 php 的较新数据库扩展之一。
http://il2.php.net/pdo
或者
http://il2.php.net/mysqli
you need to set the charset of the connection.
you do it like that:
mysql_query('SET NAMES utf8');
add this code before your query.
anyway, you better use one of the newer data base extensions of php.
http://il2.php.net/pdo
or
http://il2.php.net/mysqli