blob: 82f4ec93dbec7ecfd1a364f8bcf39d4aa0fe04d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--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)
|