主頁(yè) > 知識(shí)庫(kù) > thinkPHP5實(shí)現(xiàn)的查詢數(shù)據(jù)庫(kù)并返回json數(shù)據(jù)實(shí)例

thinkPHP5實(shí)現(xiàn)的查詢數(shù)據(jù)庫(kù)并返回json數(shù)據(jù)實(shí)例

熱門(mén)標(biāo)簽:百度地圖標(biāo)注名編輯 個(gè)性化地圖標(biāo)注在線 深圳400電話辦理那家好 安徽移動(dòng)外呼系統(tǒng) 施工地圖標(biāo)注怎么做 百度地圖標(biāo)注飯店位置怎么 怎么在高德地圖標(biāo)注行走軌跡 清遠(yuǎn)陽(yáng)山400電話號(hào)碼如何申請(qǐng) 襄陽(yáng)房產(chǎn)電銷(xiāo)機(jī)器人招商

本文實(shí)例講述了thinkPHP5實(shí)現(xiàn)的查詢數(shù)據(jù)庫(kù)并返回json數(shù)據(jù)。分享給大家供大家參考,具體如下:

TP5 實(shí)現(xiàn)查詢數(shù)據(jù)庫(kù)返回json數(shù)據(jù)(返回json數(shù)據(jù)函數(shù)實(shí)例)

返回結(jié)果:

復(fù)制代碼 代碼如下:
{"code":0,"msg":"\u6570\u636e\u8fd4\u56de\u6210\u529f","count":1000,"data":[{"id":617,"title":"\u5317\u4eac\u7406\u5de5\u5927\u5b66","flid":1,"pid":0,"uid":1,"price":0,"admin_name":null,"time":"2017-09-22 16:17:16"},{"id":618,"title":"\u5357\u5f00\u5927\u5b66","flid":1,"pid":0,"uid":1,"price":0,"admin_name":null,"time":"2017-09-22 16:17:28"}]}

一、把格式化json函數(shù)寫(xiě)到公共文件common.php中,common.php文件路徑在:application/common.php 所有文件文件都可以引用

function json($code,$msg="",$count,$data=array()){
  $result=array(
   'code'=>$code,
   'msg'=>$msg,
   'count'=>$count,
   'data'=>$data
  );
  //輸出json
  echo json_encode($result);
  exit;
}

二、查詢數(shù)據(jù)  控制方式 Main.php

application\admin\controller\Main.php

?php
namespace app\admin\controller;
use think\Controller;
use think\Validate;
use think\Request;
//use think\Db;
class Main extends controller
{
  public function index()
  {
    return $this -> fetch();
  }
//學(xué)校列表
  public function school()
  {
    $rs=db('school')->select();
    $rs1=json(0,'數(shù)據(jù)返回成功',1000,$rs);
    dump($rs1);die;//打印出來(lái)
    return $this -> fetch();
  }

PS:這里再為大家推薦幾款比較實(shí)用的json在線工具供大家參考使用:

在線JSON代碼檢驗(yàn)、檢驗(yàn)、美化、格式化工具:
http://tools.jb51.net/code/json

JSON在線格式化工具:
http://tools.jb51.net/code/jsonformat

在線XML/JSON互相轉(zhuǎn)換工具:
http://tools.jb51.net/code/xmljson

json代碼在線格式化/美化/壓縮/編輯/轉(zhuǎn)換工具:
http://tools.jb51.net/code/jsoncodeformat

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《PHP中json格式數(shù)據(jù)操作技巧匯總》、《ThinkPHP入門(mén)教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《codeigniter入門(mén)教程》、《CI(CodeIgniter)框架進(jìn)階教程》、《Zend FrameWork框架入門(mén)教程》及《PHP模板技術(shù)總結(jié)》。

希望本文所述對(duì)大家基于ThinkPHP框架的PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • tp5.1框架數(shù)據(jù)庫(kù)子查詢操作實(shí)例分析
  • tp5.1 框架數(shù)據(jù)庫(kù)常見(jiàn)操作詳解【添加、刪除、更新、查詢】
  • tp5.1 框架數(shù)據(jù)庫(kù)高級(jí)查詢技巧實(shí)例總結(jié)
  • ThinkPHP5.1框架數(shù)據(jù)庫(kù)鏈接和增刪改查操作示例
  • PHP利用pdo_odbc實(shí)現(xiàn)連接數(shù)據(jù)庫(kù)示例【基于ThinkPHP5.1搭建的項(xiàng)目】
  • PHP7使用ODBC連接SQL Server2008 R2數(shù)據(jù)庫(kù)示例【基于thinkPHP5.1框架】
  • ThinkPHP實(shí)現(xiàn)多數(shù)據(jù)庫(kù)連接的解決方法
  • tp5(thinkPHP5)框架數(shù)據(jù)庫(kù)Db增刪改查常見(jiàn)操作總結(jié)
  • tp5(thinkPHP5)框架實(shí)現(xiàn)多數(shù)據(jù)庫(kù)查詢的方法
  • tp5(thinkPHP5)操作mongoDB數(shù)據(jù)庫(kù)的方法
  • thinkPHP5實(shí)現(xiàn)數(shù)據(jù)庫(kù)添加內(nèi)容的方法
  • tp5.1 框架數(shù)據(jù)庫(kù)-數(shù)據(jù)集操作實(shí)例分析

標(biāo)簽:駐馬店 阜陽(yáng) 欽州 黑河 中衛(wèi) 臨夏 延邊 南昌

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《thinkPHP5實(shí)現(xiàn)的查詢數(shù)據(jù)庫(kù)并返回json數(shù)據(jù)實(shí)例》,本文關(guān)鍵詞  thinkPHP5,實(shí)現(xiàn),的,查詢,數(shù)據(jù)庫(kù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《thinkPHP5實(shí)現(xiàn)的查詢數(shù)據(jù)庫(kù)并返回json數(shù)據(jù)實(shí)例》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于thinkPHP5實(shí)現(xiàn)的查詢數(shù)據(jù)庫(kù)并返回json數(shù)據(jù)實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章