0

我怎样才能得到这样的数组:

$array = array(
    "test1" => "blah1",
    "test2" => "blah2",
);

转换成这样的字符串:

$string = {"test1":"blah1","test2":"blah"}

数组的大小可能会有所不同,因此它必须是动态的。

提前谢谢。

4

1 回答 1

5

这是 JSON。使用json_encode().

于 2013-01-25T01:25:42.580 回答