获取要转换为二进制字符串的字符串的值

时间:2017-12-11 14:45:45

标签: php laravel lumen

我正在查询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。

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

iconv("utf-8", "utf-8//ignore", b"My description string")似乎可以解决问题!