1. Go to this page and download the library: Download blancks/fast-jsonpatch-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
blancks / fast-jsonpatch-php example snippets
use blancks\JsonPatch\FastJsonPatch;
use blancks\JsonPatch\exceptions\FastJsonPatchException;
$document = '{
"contacts":[
{"name":"John","number":"-"},
{"name":"Dave","number":"+1 222 333 4444"}
]
}';
$patch = '[
{"op":"add","path":"/contacts/-","value":{"name":"Jane", "number":"+1 353 644 2121"}},
{"op":"replace","path":"/contacts/0/number","value":"+1 212 555 1212"},
{"op":"remove","path":"/contacts/1"}
]';
$FastJsonPatch = FastJsonPatch::fromJson($document);
try {
$FastJsonPatch->apply($patch);
} catch (FastJsonPatchException $e) {
// here if patch cannot be applied for some reason
echo $e->getMessage(), "\n";
}
var_dump($FastJsonPatch->getDocument());
$document = ['one', 'two', 'three'];
$FastJsonPatch = new FastJsonPatch($document);