Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用SQL从MYSQL数据库中提取标记的数据并建立标记数组(具有属性location、name、address、phone_number)。
在脚本的结尾我echo json_encode($myarray).
echo json_encode($myarray)
出于某种原因,如果某个特定标记的名称或地址最终带有任何法语符号(例如 é) - PHP 只是将整个名称或地址替换为null. 同时,我的数据库表可以很好地处理法语符号。
null
是什么赋予了?
我对印地语内容也有类似的问题。对我来说,解决它的方法是在数据提取之前将字符集设置为 UTF-8。我向您推荐此页面以了解如何执行此操作。
http://www.php.net/manual/en/mysqli.set-charset.php