Heim > Backend-Entwicklung > PHP-Tutorial > php json 不能解析中文字符串?解决方法

php json 不能解析中文字符串?解决方法

WBOY
Freigeben: 2016-06-13 12:38:51
Original
1183 Leute haben es durchsucht

php json 不能解析中文字符串???
今天遇到一个很奇怪的问题,在使用json_decode的时候,遇到一个奇怪的问题,在遇到中文字符组的时候,怎么都解析不了,把这个中文的字段删除,里面就能解析了....搞了半天不知道哪里的问题,路过的大虾帮忙看看

	$nodeAry=array();<br />
	while($row=mssql_fetch_array($rs)){<br />
		$description=strstr("//","",$row['description']);<br />
	   array_push($nodeAry,'{"fchrItemID":"'.$row["fchrItemID"].'","fchrItemTypeID":"'.$row["fchrItemTypeID"].'","fchrItemName":"'.$row["fchrItemName"].'","flotQuotePrice":"'.$row["flotQuotePrice"].'","description":"'.trim($description).'","fdtmLastModifyTime":"'.$row["fdtmLastModifyTime"].'","sales_volume":"'.$row["sales_volume"].'"}');<br />
    }<br />
	$tbstr=implode(',',$nodeAry);   <br />
<br />
?>{"table":[<?=$tbstr;?>]}
Nach dem Login kopieren


这里的description 字段有中文,只要把这个字段去掉就可以了,

 header("Content-Type:text/html; charset=utf-8");<br />
	<br />
	$ch = curl_init();<br />
	curl_setopt($ch, CURLOPT_URL, $remoteAPIBasePath . "sync2shop_api/item.php");<br />
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
	curl_setopt($ch, CURLOPT_HEADER, 0);<br />
	$output = curl_exec($ch);<br />
	<br />
	curl_close($ch);<br />
	<br />
	$obj=json_decode(iconv("gb2312","utf-8",$output));<br />
	var_dump( $obj);<br />
	//$obj=json_decode($output);<br />
<br />
	$rscount=count($obj->table);<br />
	<br />
	$han=fopen("debug.php","a");<br />
	fwrite($han,$output."---------".$rscount);<br />
	fclose($han);
Nach dem Login kopieren


我是这么解析的,不知道哪里有错误,有谁帮忙看看!

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage