문제

How can I get an array such as this:

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

converted to a string like this:

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

The array may vary in size so it will have to be dynamic.

Thanks ahead of time.

도움이 되었습니까?

해결책

This is JSON. Use json_encode().

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top