📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 22:45:27
📂
/ (Root)
/
opt
/
alt
/
tests
/
alt-php83-pecl-mongodb_1.18.1-1.el8
/
tests
📍 /opt/alt/tests/alt-php83-pecl-mongodb_1.18.1-1.el8/tests
🔄 Refresh
✏️
Editing: bson-enum-001.phpt
Read Only
--TEST-- Backed enums serialize as their case value --SKIPIF-- <?php require __DIR__ . "/../utils/basic-skipif.inc"; ?> <?php skip_if_php_version('<', '8.1.0'); ?> --FILE-- <?php require_once __DIR__ . '/../utils/basic.inc'; enum MyIntBackedEnum: int { case A = 1; } enum MyStringBackedEnum: string { case A = 'a'; } $document = [ 'x' => MyIntBackedEnum::A, 'y' => MyStringBackedEnum::A, ]; echo toCanonicalExtendedJSON(fromPHP($document)), "\n"; ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- { "x" : { "$numberInt" : "1" }, "y" : "a" } ===DONE===
💾 Save Changes
❌ Cancel