php中json_encode的使用樣本介紹

來源:互聯網
上載者:User
在上一篇文章中我們給大家介紹了php中json_encode()函數的詳解,並且知道他只能在php5.2以上的版本才可以使用、 那麼今天主要向我們簡單介紹了下json_encode的使用方法,非常簡單實用,這裡推薦給大家。

1.從資料庫中查詢出來的資料,放在數組中

$query=mysql_query($SQL); while($row = mysql_fetch_array($query)){          $xdata[]=$row['EventDate'];          $ydata[]=intval($row['data']);     }

2.將資料轉成json

$data_arr=array($xdata,$ydata)json_encode($data_arr);

3.HTML 頁面中 AJAX調用資料

$.ajax({type: "Get",      url: "columndata.php?r=" + Math.floor(Math.random() * 1000 + 1),    data: { 'BeginTime': "" + beginTime + "", "EndTime": "" + endTime + "" , "keyword": "" + keyword + "" },   dataType: "text",      global: false,     async: false,      success: function (strReult) {    if (strReult == "-1") { alert("fail!"); return; }    var jsondata = eval("(" + strReult + ")");       var xData = jsondata[0];                                     var yData = jsondata[1];       var namestr = jsondata[2];   },    error: function () {    alert("fail!");   }  });

總結:

通過對本文的學習相信大夥對php中json_encode的使用方法有了進一步的瞭解,希望對你的工作有所協助!

相關推薦:

php中關於json_encode()函數的詳解


PHP json_encode() 函數介紹


PHP json_encode() 函數詳解及中文亂碼問題

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.