0

我想使用 JSON 对对象进行编码以回答 AJAX 请求。首先,我将对象转换为数组(结果看起来不错),然后我使用json_encode将数组编码为 JSON 格式,但我得到了意想不到的结果。获取的 JSON 字符串在属性名之前有类名,并且空字符 '\0000' 出现在很多地方。我所有的文件都使用 UTF-8 编码。如果我使用get_object_vars,我会得到结果array = []

我该如何解决这个问题?

我得到了结果:{"\u0000DB\u0000connection":null,"\u0000DB\u0000serverName":"localhost","\u0000DB\u0000userName":"root","\u0000DB\u0000password":null,"\u0000DB\u0000dbName":"thahtin"}

这是我使用的代码:

class DB
{
    private $connection;
    private $serverName;
    private $userName;
    private $password;
    private $dbName;

    public function __construct()
    {
        $config = new Configuration();
        $this->serverName = 'localhost'; //$config->getConfig("server");
        $this->userName = 'root'; //$config->getConfig("userName");
        $this->password = null; //$config->getConfig("password");
        $this->dbName = 'thahtin'; //$config->getConfig("database");
    }       

    public function open()
    {
        if(!$this->connection)
            mysql_close($this->connection);
        $this->connection = mysql_connect($this->serverName, $this->userName, $this->password);
        if(!$this->connection)
        {
            die('Could not connect. Error: ' . mysql_error());
        }
        mysql_select_db($dbName);
    }
}

$db = new DB();
echo json_encode((array)$db);
4

1 回答 1

3

get_object_vars返回一个空数组,因为您的所有属性都是私有的。将它们公开,或者(更好)自己构建数组,以便您可以控制其中的内容。

于 2012-04-20T04:08:53.337 回答