/
usr
/
share
/
php
/
tests
/
mongodb
/
tests
/
bson
/
Upload File
HOME
--TEST-- MongoDB\BSON\Decimal128 get_properties handler (get_object_vars) --SKIPIF-- <?php if (!class_exists('MongoDB\BSON\Decimal128')) { die('skip MongoDB\BSON\Decimal128 is not available'); } ?> --FILE-- <?php $decimal = new MongoDB\BSON\Decimal128('1234.5678'); var_dump(get_object_vars($decimal)); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- array(1) { ["dec"]=> string(9) "1234.5678" } ===DONE===