관리-도구
편집 파일: bson-decimal128interface-001.phpt
--TEST-- MongoDB\BSON\Decimal128Interface is implemented by MongoDB\BSON\Decimal128 --FILE-- <?php $decimal = new MongoDB\BSON\Decimal128('1234.5678'); var_dump($decimal instanceof MongoDB\BSON\Decimal128Interface); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- bool(true) ===DONE===