mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> Closes GH-6489.
15 lines
273 B
PHP
15 lines
273 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
|
|
|
|
Notice: unserialize(): Error at offset 0 of 14 bytes in %s on line %d
|
|
bool(false)
|