📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 11:02:04
📂
/ (Root)
/
opt
/
alt
/
tests
/
alt-php84-pecl-igbinary_3.2.16-3.el8
/
tests
📍 /opt/alt/tests/alt-php84-pecl-igbinary_3.2.16-3.el8/tests
🔄 Refresh
✏️
Editing: igbinary_093.phpt
Read Only
--TEST-- Test refusing to serialize/unserialize unserializable anonymous classes --INI-- error_reporting=E_ALL --FILE-- <?php // https://bugs.php.net/bug.php?id=81111 function check_serialize_throws($obj) { try { echo urlencode(igbinary_serialize($obj)), "\n"; } catch (Throwable $e) { echo "Caught: " . $e->getMessage() . "\n"; } } check_serialize_throws(new class () { public function __serialize() { return []; } public function __unserialize($value) { } }); check_serialize_throws(function () { }); ?> --EXPECTF-- Caught: Serialization of 'class@anonymous' is not allowed Caught: Serialization of 'Closure' is not allowed
💾 Save Changes
❌ Cancel