主頁 > 知識(shí)庫 > php使用json-schema模塊實(shí)現(xiàn)json校驗(yàn)示例

php使用json-schema模塊實(shí)現(xiàn)json校驗(yàn)示例

熱門標(biāo)簽:德陽中江如何申請400開頭電話 智能電話機(jī)器人好公司門薩維 青白江地圖標(biāo)注 銅川電話機(jī)器人價(jià)格 AI電話機(jī)器人OEM貼牌 辦理重慶400電話 沛縣400電話辦理 聊城電話外呼系統(tǒng)公司 江蘇電商外呼系統(tǒng)運(yùn)營商

本文實(shí)例講述了php使用json-schema模塊實(shí)現(xiàn)json校驗(yàn)。分享給大家供大家參考,具體如下:

客戶端和服務(wù)端的http信息傳遞,采用json幾乎成了標(biāo)配。json格式簡單,易于處理,不過由于沒有格式規(guī)定,無法校驗(yàn)。

好在php有json-schema模塊,可以用來驗(yàn)證json是否符合規(guī)定的格式。

安裝使用composer

composer require justinrainbow/json-schema:~1.3

新建一個(gè)schema文件,如:schema.json

{
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
             "required": true
    },
    "lastName": {
      "type": "string"
    },
    "age": {
      
      "type": "integer",
      "minimum": 0
    },
    "data":{
       "type":"object",
       "required":true,
       "properties":{
        }
    }
  }
}

可以在字段里嵌套子結(jié)構(gòu),如果properties為空,則可以任意,比如上例的data。

類型有:

array
A JSON array.
boolean
A JSON boolean.
integer
A JSON number without a fraction or exponent part.
number
Any JSON number. Number includes integer.
null
The JSON null value.
object
A JSON object.
string
A JSON string.

php代碼如下:

$json = '{"firstName":"ban", "lastName":"shan","age":1,"data":{"hobby":"coding"} }';
$validator = new JsonSchema\Validator;
$schema = file_get_contents("schema.json");
$validator->check(json_decode($json), json_decode($schema));
if ($validator->isValid()) {
  echo "The supplied JSON validates against the schema.\n";
} else {
  echo "JSON does not validate. Violations:\n";
  foreach ($validator->getErrors() as $error) {
    echo sprintf("[%s] %s\n", $error['property'], $error['message']);
  }
}

這樣先定義好通信的schema,在json發(fā)送給客戶端之前校驗(yàn)是否和約定相同,避免不必要的錯(cuò)誤。

參考鏈接,json-schema 文檔,php的json-schema 實(shí)現(xiàn)。

完整的代碼在此。

PS:本站還提供了如下XML與JSON相關(guān)工具,方便大家參考使用:

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

php代碼在線格式化美化工具:
http://tools.jb51.net/code/phpformat

在線XML格式化/壓縮工具:
http://tools.jb51.net/code/xmlformat

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

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP中json格式數(shù)據(jù)操作技巧匯總》、《PHP針對(duì)XML文件操作技巧總結(jié)》、《PHP基本語法入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》

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

您可能感興趣的文章:
  • python的json中方法及jsonpath模塊用法分析
  • Python3內(nèi)置模塊之json編解碼方法小結(jié)【推薦】
  • 詳解python 3.6 安裝json 模塊(simplejson)
  • Node.js JSON模塊用法實(shí)例分析
  • Python3爬蟲爬取百姓網(wǎng)列表并保存為json功能示例【基于request、lxml和json模塊】
  • 簡單介紹Python中的JSON模塊
  • 序列化模塊json代碼實(shí)例詳解

標(biāo)簽:赤峰 迪慶 南寧 山南 三亞 鷹潭 烏魯木齊 濟(jì)寧

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