In diesem Artikel erfahren Sie hauptsächlich, wie Sie den Wert eines JSON-Objekts in PHP ausgeben. Ich hoffe, er kann Ihnen helfen. Ein Beispiel für
lautet wie folgt:
<!DOCTYPE html> <html> <body> <?php $json = '{"report":{"date":"2012-04-10","content":"abcdefght"}}'; $arr = (array) json_decode($json,true); echo '当前日期是:'. $arr['report']['date']; echo "<br/>"; echo '<pre class="brush:php;toolbar:false">'; print_r($arr); echo ''; foreach($arr as $arrvalue) { foreach($arrvalue as $key=>$value) { echo "[$key] = $value