Home >Backend Development >PHP Tutorial >截取多个JSON的参数值遇到问题。

截取多个JSON的参数值遇到问题。

WBOY
WBOYOriginal
2016-06-23 13:58:50858browse

POST获取的JSON数据  [{"Name":"PM","Value":"224"},{"Name":"WD","Value":"25"},{"Name":"SD","Value":"34"},]

如何截取 Name=WD 的Value?
求代码。


回复讨论(解决方案)

最简单的,循环查找呗。

$json = '[{"Name":"PM","Value":"224"},{"Name":"WD","Value":"25"},{"Name":"SD","Value":"34"}]';$jsonArr = json_decode($json) ;foreach ($jsonArr as  $value) {	if($value->Name == 'WD'){		echo $value->Value."<br />";	}}

$s = '[{"Name":"PM","Value":"224"},{"Name":"WD","Value":"25"},{"Name":"SD","Value":"34"}]';$t = array_filter(json_decode($s), function($v) { return $v->Name == 'WD'; });echo current($t)->Value; //25

Statement:
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