我正在查询Advantage Database Server,其中一个结果会返回以下内容......
["description" => b"My description string"]
我使用Laravel的Lumen框架作为api服务器,当我在json响应中返回时,我收到了以下错误。
UnexpectedValueException in Response.php line 397:
The Response content must be a string or object implementing __toString(), "boolean" given.
我的问题是,如何将b"My description string"
转换为我可以在回复中返回的字符串?
服务器正在运行PHP 5.5。
有人可以帮忙吗?
答案 0 :(得分:0)
iconv("utf-8", "utf-8//ignore", b"My description string")
似乎可以解决问题!