관리-도구
편집 파일: bson-decimal128-002.phpt
--TEST-- MongoDB\BSON\Decimal128 NaN values --FILE-- <?php $tests = [ acos(8), NAN, 'nan', 'Nan', 'NaN', 'NAN', ]; foreach ($tests as $test) { printf("%s\n", new MongoDB\BSON\Decimal128($test)); } ?> ===DONE=== <?php exit(0); ?> --EXPECT-- NaN NaN NaN NaN NaN NaN ===DONE===