php-src/Zend/tests/enum/unserialize-non-enum.phpt
Tim Düsterhus dd8de1e726
Promote unserialize() notices to warning (#9629)
* Unserialize: Migrate "Unexpected end of serialized data" to E_WARNING

* Unserialize: Migrate "Error at offset %d of %d bytes" to E_WARNING

* Unserialize: Migrate "%s is returned from __sleep() multiple times" to E_WARNING

* Add NEWS for “Promote unserialize() notices to warning”
2022-11-15 19:36:38 +01:00

15 lines
274 B
PHP

--TEST--
Enum unserialize non-enum
--FILE--
<?php
class Foo {}
var_dump(unserialize('E:7:"Foo:Bar";'));
?>
--EXPECTF--
Warning: unserialize(): Class 'Foo' is not an enum in %s on line %d
Warning: unserialize(): Error at offset 0 of 14 bytes in %s on line %d
bool(false)