/
usr
/
share
/
php
/
tests
/
mongodb
/
tests
/
bson
/
Upload File
HOME
--TEST-- MongoDB\BSON\Timestamp get_properties handler (get_object_vars) --FILE-- <?php $timestamp = new MongoDB\BSON\Timestamp(1234, 5678); var_dump(get_object_vars($timestamp)); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- array(2) { ["increment"]=> string(4) "1234" ["timestamp"]=> string(4) "5678" } ===DONE===