1--TEST-- 2Enum serialize 3--FILE-- 4<?php 5 6enum Foo { 7 case Bar; 8} 9 10echo serialize(Foo::Bar); 11 12?> 13--EXPECT-- 14E:7:"Foo:Bar"; 15