php中如何输出json对象
程序员文章站
2022-05-16 08:39:34
...
这次给大家带来php中如何输出json对象,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" }
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
以上就是php中如何输出json对象的详细内容,更多请关注其它相关文章!
推荐阅读
-
C#中的DataSet、string、DataTable、对象转换成Json的实现代码
-
如何理解Java中基类子对象的构建过程从"基类向外"进行扩散的?
-
coreldraw中如何精准控制对象位置、方向、以及大小
-
coreldraw中如何精准控制对象 Position和Rotate按钮轻松搞定
-
PHP 如何获取二维数组中某个key的集合
-
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
-
在Struts2中如何将父类属性序列化为JSON格式的解决方法
-
Jquery遍历筛选数组的几种方法和遍历解析json对象,Map()方法详解以及数组中查询某值是否存在
-
js中对象和面向对象与Json介绍
-
php中输出json对象的值(实现方法)