ridvanaltun/json-patch-generator
最新稳定版本:v1.1.0
Composer 安装命令:
composer require ridvanaltun/json-patch-generator
包简介
Create JSON Patch (IETF RFC-6902).
README 文档
README
Generate JSON Patch (IETF RFC-6902).
This library allows you generate json-patch in PHP.
Installation
$ composer require ridvanaltun/json-patch-generator
Usage
<?php require_once __DIR__ . '/vendor/autoload.php'; use ridvanaltun\JsonPatchGenerator\Utils; $utils = new Utils(); $oldSnap = [ 'name' => 'foo', 'surname' => 'bar', 'skils' => [ 'computer_science' => true, 'algorithm' => true, 'math' => false, ], 'specs' => [ 'a', 'b', 'c', ] ]; $currSnap = [ 'name' => 'foo', 'age' => 23, 'skils' => [ 'computer_science' => true, 'algorithm' => false, ], 'specs' => [ 'a', 'b', 'd', 'e', ] ]; $jsonPatch = $utils->generateJsonPatch($currSnap, $oldSnap); var_dump($jsonPatch);
OUTPUT:
array(7) { [0]=> array(3) { ["op"]=> string(3) "add" ["path"]=> string(4) "/age" ["value"]=> int(23) } [1]=> array(3) { ["op"]=> string(7) "replace" ["path"]=> string(16) "/skils/algorithm" ["value"]=> bool(false) } [2]=> array(3) { ["op"]=> string(3) "add" ["path"]=> string(6) "/specs" ["value"]=> string(1) "d" } [3]=> array(3) { ["op"]=> string(3) "add" ["path"]=> string(6) "/specs" ["value"]=> string(1) "e" } [4]=> array(2) { ["op"]=> string(6) "remove" ["path"]=> string(8) "/surname" } [5]=> array(2) { ["op"]=> string(6) "remove" ["path"]=> string(11) "/skils/math" } [6]=> array(3) { ["op"]=> string(6) "remove" ["path"]=> string(6) "/specs" ["value"]=> string(1) "c" } } 统计信息
- 总下载量: 8.18k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04