Home > Backend Development > PHP Tutorial > json_encode之后,json数据变成[{"a","1"}],怎么改成{"a","1"}

json_encode之后,json数据变成[{"a","1"}],怎么改成{"a","1"}

WBOY
Release: 2016-06-23 13:40:35
Original
697 people have browsed it

function get_js_array($sql){	$result = mysql_query($sql);	$arr = array();	while($row = mysql_fetch_array($result, MYSQL_ASSOC)){		$arr[] = $row;  	}	$js = json_encode($arr);	mysql_free_result($result);	mysql_close($conn);	return $js;}
Copy after login


求根据这个改写一下。。 谢谢


回复讨论(解决方案)

$js = json_encode(array_pop($arr));

$js = json_encode(array_pop($arr));


是这样的。我那个输出出来希望是个{"a","1"},{"b","1"};

我现在这个方法输出出来是[{"a","1"},{"b","1"}]

你这个方法修改完了以后输出出来是{"a","1"}

括号去掉了。 但是只输出一条数据。

json_encode之后,json数据变成[{"a","1"}],怎么改成{"a","1"} 

你的??是???的。

$js = trim(json_encode($arr), '[]');

你这个需求很奇怪,本来是数组,却不用数组表示

$js = trim(json_encode($arr), '[]');

你这个需求很奇怪,本来是数组,却不用数组表示



是我给ios做后台接口。  json_encode 之后  传过去他们解析不了。 他们只能解析{"a","1"}... 加了[]  他们就解析不了了。。

谢谢了。  可以了。。

你??元素,不用??怎?行。
最??,你先json_encode,然後??掉??括?,但那?你如何decode?

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template