php 에서 json 대상 의 값 을 출력 합 니 다(실현 방법)

1800 단어 php출력json대상
실례 는 다음 과 같다.

 <!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>';
 print_r($arr);
echo '</pre>'; 
 
 foreach($arr as $arrvalue)
 {
 foreach($arrvalue as $key=>$value)
 {
  echo "[$key] = $value <br />";
 }
 }
echo "<br/>";
?>
 
</body>
</html>

<!DOCTYPE html>
<html>
<body>
<?php
$file_exists = file_exists("json.txt");
if( $file_exists ){
 $myfile = fopen("json.txt", "r") or die("");
 $content = fread($myfile,filesize("json.txt"));
 fclose($myfile);
 echo $content;
 echo "<br/>";
 $arr=(array)json_decode($content,true);
 echo $arr['CSS'];
 echo "<br/>";
 echo $arr['AJAX'];
}
?>
 
</body>
</html>

json.txt:

{
 "AJAX": "Asynchronous JavaScript and XML",
 "CSS": "Cascading Style Sheets"
}
이상 의 phop 에서 json 대상 을 출력 하 는 값(실현 방법)은 바로 편집장 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 께 참고 가 되 고 저희 도 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기