Skip to content

Commit 17bfc66

Browse files
authored
Merge pull request #67 from wmde/fix-remove-operation
Fix `JsonPointer::remove()` not handling sequential arrays correctly
2 parents f4e5117 + 22c33af commit 17bfc66

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/JsonPointer.php

+1
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ public static function remove(&$holder, $pathItems, $flags = 0)
289289
$isAssociative = true;
290290
break;
291291
}
292+
$i++;
292293
}
293294
}
294295

tests/src/JsonPointerTest.php

+7
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,13 @@ public function testGetSetDeleteObject()
9696
$this->assertEquals(null, $s->one->two);
9797
}
9898

99+
public function testSequentialArrayIsPreserved()
100+
{
101+
$json = [ 'l1' => [ 0 => 'foo', 1 => 'bar', 2 => 'baz' ] ];
102+
JsonPointer::remove($json, ['l1', '1'], JsonPointer::TOLERATE_ASSOCIATIVE_ARRAYS);
103+
$this->assertSame('{"l1":["foo","baz"]}', json_encode($json));
104+
}
105+
99106
}
100107

101108
class Sample

0 commit comments

Comments
 (0)