--TEST-- Timestamp type: Timestamp with high-order bit set on both seconds and increment (not UINT32_MAX) --DESCRIPTION-- Generated by scripts/convert-bson-corpus-tests.php DO NOT EDIT THIS FILE --FILE-- BSON object -> Canonical BSON echo bin2hex((string) MongoDB\BSON\Document::fromBSON($canonicalBson)), "\n"; // Canonical BSON -> BSON object -> Canonical extJSON echo json_canonicalize(MongoDB\BSON\Document::fromBSON($canonicalBson)->toCanonicalExtendedJSON()), "\n"; // Canonical extJSON -> BSON object -> Canonical BSON echo bin2hex((string) MongoDB\BSON\Document::fromJSON($canonicalExtJson)), "\n"; ?> ===DONE=== --EXPECT-- 1000000011610000286bee00286bee00 {"a":{"$timestamp":{"t":4000000000,"i":4000000000}}} 1000000011610000286bee00286bee00 ===DONE===