PHP中生成json信息的方法

?php//php中生成json信息//json_encode(数组/对象)$color = array(red,blue,green); //【索引数组】echo json_encode($color),br /; //[red,blue,green]$animal = array(east=tiger,north=wolf,south=monkey); //【关联数组】echo json_encode($animal),br /
<?php

//php中生成json信息
//json_encode(数组/对象)

$color = array('red','blue','green'); //【索引数组】
echo json_encode($color),"<br />"; //["red","blue","green"]

$animal = array('east'=>'tiger','north'=>'wolf','south'=>'monkey'); //【关联数组】
echo json_encode($animal),"<br />";//{"east":"tiger","north":"wolf","south":"monkey"}

//【索引关联数组】
$animal2 = array('east'=>'tiger','north'=>'wolf','duck','south'=>'monkey');
echo json_encode($animal2),"<br />";//{"east":"tiger","north":"wolf","0":"duck","south":"monkey"}

//[{},{},{}]
//{"weatherinfo":{"city":"北京","cityid":"101010100","temp":"9","WD":"南风","WS":"2级","SD":"26%","WSE":"2","time":"10:20","isRadar":"1","Radar":"JC_RADAR_AZ9010_JB","njd":"暂无实况","qy":"1014"}}
//{名称:[],名称:[],名称:[]}


//【对象生成json信息】
class Person{
    public $addr = "beijing";
    public $height = 170;
    public function study(){
        echo "study php";
    }
}
$tom = new Person();
//只是对象的属性给生成json信息
echo json_encode($tom);//{"addr":"beijing","height":170}

1.json
json_encode(数组/对象)------------>生成json信息,
 
json_decode(json信息); 反编码json信息
 
对json字符串信息进行反编码,变为当前语言可以识别的信息。
 
2. javascript接收处理json信息
通过eval()把接收的json字符串变成真实的对象信息
 
代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
    <head>
        <title>新建网页</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta name="description" content="" />
        <meta name="keywords" content="" />

        <script type="text/javascript">
        function showweather(){
            //利用ajax获得天气预报信息
            //利用javascript+dom处理并显示天气信息
            var xhr = new XMLHttpRequest();
            xhr.onreadystatechange = function(){
                if(xhr.readyState==4){
                    //alert(xhr.responseText);
                    console.log(typeof xhr.responseText);//string
                    //要把接收的“字符串”变为“对象”
                    //'{"addr":"\u5317\u4eac","temp":"9-22","wind":"north4-5"}'
                    eval("var info="+xhr.responseText);

                    var str = "地址:"+info.addr+";温度:"+info.temp+";风向:"+info.wind;
                    document.getElementById('result').innerHTML = str;
                }
            }
            xhr.open('get','./03.php');
            xhr.send(null);
        }
        window.onload = function(){
            showweather();
        }
        
//        //s字符串变为对象obj
//         var s = "{name:'tom',height:170}";
//        //"var obj="+"{name:'tom',height:170}"====>"var obj={name:'tom',height:170}"
//        //console.log("var obj="+s);  
//        eval("var obj="+s);
//        console.log(obj);//Object { name="tom", height=170}

        </script>

        <style type="text/css">
        </style>
    </head>
    <body>
        <h2>获得天气预报接口信息</h2>
        <div id="result"></div>
    </body>
</html>

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

今天在用php进行图片保存输出时候,图片一直显示错误,后面用调试模式下提示:Warning: Cannot modify header information - headers already sent by... 看了一些网上的方法也没解决,最后在php.ini配置output_buffering默认为4096就没有遇到这个错误了: o
ob_start()函数用于打开缓冲区,比如header()函数之前如果就有输出,包括回车/空格/换行/都会有Header had all ready send by的错误,这时可以先用ob_start()打开缓冲区PHP代码的数据块和echo()输出都会进入缓冲区而不会立刻输出.当然打开缓冲区的作用很多,只要
第一种方法:用php的strpos() 函数判断字符串中是否包含某字符串的方法 if(strpos(www.genban.org,genban) !== false){ echo 包含genban; }else{ echo 不包含genban; } 第二种 使用了explode 用explode进行判断PHP判断字符串的包含代码如下: ?php $name = 00
/u 表示按unicode(utf-8)匹配(主要针对多字节比如汉字) /i 表示不区分大小写(如果表达式里面有 a, 那么 A 也是匹配对象) /s 表示将字符串视为单行来匹配
随机生成难点是在于如何避免碰撞,有人说用md5,GUID这些机制啊,当然可以,但是做为账号,看着有乱,而且生成位数也过长。 本方法只需要解决1秒内的并发碰撞就可以,因为固定头部采用的是unixtime时间,精确到秒,超过1秒,这个头部的时间肯定变化了。同时
很多时候onclick事件是伴随着页面的跳转,也就会有相应的参数传递案。案例如下所示: a href=# onclick=showTable(this)123/a #为你要跳转的页面 这个时候你传的参数就是123 function showTable(data){ alert(data.innerHTML);//js写法 alert($(data).html()