PHP6 先修班 JSON实例代码
2015-01-24信息快讯网
JSON 主要利用了成Φ {} 戆住各object(物件),用成Φ [] 戆各array(列),
用成Φ "" 戆住各字串,用逗^隔各刀Y料型B有 string, number, array, object
下面蔚JSON格式,⑹隽艘 object json 碛幸成T,@成T抵杏泻有三物件
复制内容到剪贴板代码:
var json = {
'query' : [
{'id':'1','type':'a','title':'PHP 5.2.0 的新功能 JSON decoder & encoder'},
{'id':'2','type':'b','title':'JSON 全Q JavaScript Object Notation'},
{'array': ['A', 'B','C', 'D', 'E']}
]
};
如此,我可以@得一叫做 json 的Object,而@json Object中包含一立的成T query
而query包含一Array ,@Array中又含了三Object,前面二Object含有三成T
id,type,title,而最後一Object array 包含一列,如此解明白吧?
但是要怎N用呢?
很
alert('I have ' +json.query.length + ' object.');
//alert I have 3 object.
alert('type='+json.query[1].type+'\r\ntitle'+json.query[1].title);
//alert type=b title=JSON 全Q JavaScript Object Notation
alert('列索引3='+json.query[2].array[3]);
//alert 列索引3=D
@硬僮髻Y料r更便,不需要和}s的DOM打交道,所需要的Y料可以很p的取得
例如上面的例子 json.query[ i ].title 如此就可以取得第iP的title群的值
PHP的l展是很迅速,程式界JSON一知半解r或者全然不知何JSONr
PHP已在最新的版本5.2.0中{入核心,K且AOB是⒂茫相^於其他的ScriptZ言
PHP可^一R先,在5.2.0版本中JSON作了函 json_decode() 和 json_encode()
前者是JSON格式的字串原成PHP原生的列
後者t是PHP原生列g成JSON格式的字串
不^,由於Javascript支援Unicode,如果在存取Y料r使用非Ascii的字元,如中、日、n
需要⒆衷aDQ成UTF8,不然^json_encode()後的字串是ya
========================================================
^上一篇谓榻BJOSN後
本篇就作如何使用JOSN
下面例使用需要使用MySQL4.1以上版本
a全程裼utf8
承接上一篇的Y料格式,表中共有三谖id,type,title
Y料表格如下
复制内容到剪贴板代码:
CREATE TABLE `news` (
`id` int(10) unsigned NOT NULL auto_increment,
`type` varchar(255) NOT NULL default '',
`title` varchar(64) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
复制内容到剪贴板代码:
<?php
//建立B
$conn = mysqli_connect("localhost", 'root', '')or die('B不上Y料');
//x褓Y料
mysqli_select_db($conn,'mydata') or die('不能xY料');
//O定Bat,不懂上google找
mysqli_query($conn,'SET NAMES 'utf8'');
//取出Y料
$results = mysqli_query($conn,'SELECT id,type,title FROM news');
//Josn字串
$json = '';
//因槭枪例,所以自行控制圈
$i=0;
while($row = mysqli_fetch_assoc($results))
{
$i++;
$json .= json_encode($row);
//Y料表中只放三PY料,所以在第三Pr不需要在尾巴加上 ",",得,最後一PY料不用加上","
if ($i<3)
{
$json .= ",";
}
}
//①Y料包M列中
$json = '{"query":[ '.$json.']}';?>
<!doctype html public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" xml:lang="zh-tw" lang="zh-tw" >
<head>
<title>Json例</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta name="generator" content="mamba" />
</head>
<body>
<script type="text/javascript">
var json = <?php echo $json?>;
alert('I have ' +json.query.length + ' object.');
alert('type='+json.query[1].type+'rntitle'+json.query[1].title);
//上一篇介中使用^
</script>
原Json<br>
<?php
//⒆执解a
$s_JSON_Decoded = json_decode($json,true);
//取回Y料
foreach ($s_JSON_Decoded as $row)
{
foreach ($row as $rowa)
{
echo $rowa['title']."<br>";
}
}
?>
</body>
</html>
^蔚难菥後
相信大家JSON@玩意有更深一拥牟t解
然JSON的用不只是例中那N
有d趣一起研究吧
PHP JSON 数据解析代码
PHP XML数据解析代码
PHP 日志缩略名的创建函数代码
PHP similar_text 字符串的相似性比较函数
PHP Zip解压 文件在线解压缩的函数代码
Joomla下利用configuration.php存储简单数据
php file_get_contents函数轻松采集html数据
PHP iconv 解决utf-8和gb2312编码转换问题
Fatal error: Call to undefined function curl_init()解决方法
PHP Socket 编程
有关JSON以及JSON在PHP中的应用
GBK的页面输出JSON格式的php函数
php win下Socket方式发邮件类
phpMyAdmin2.11.6安装配置方法
php的curl实现get和post的代码
PHP Smarty生成EXCEL文档的代码
php过滤危险html代码
php htmlentities和htmlspecialchars 的区别
php magic_quotes_gpc的一点认识与分析
推荐学习php sesson的朋友必看PHP会话(Session)使用入门第1/2页
PHP4中session登录页面的应用
使用PHP socke 向指定页面提交数据
php socket方式提交的post详解
效率较高的php下读取文本文件的代码 原创
比较全的PHP 会话(session 时间设定)使用入门代码
php中iconv函数使用方法
PHP实现Socket服务器的代码
在PHP中使用Sockets 从Usenet中获取文件