summaryrefslogtreecommitdiff
path: root/Zend/tests/enum/serialize.phpt
blob: 56545ebfae9a3bc49d4383155ff0a37ef7e4eb50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Enum serialize
--FILE--
<?php

enum Foo {
    case Bar;
}

echo serialize(Foo::Bar);

?>
--EXPECT--
E:7:"Foo:Bar";