mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> Closes GH-6489.
15 lines
124 B
PHP
15 lines
124 B
PHP
--TEST--
|
|
Enum serialize
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {
|
|
case Bar;
|
|
}
|
|
|
|
echo serialize(Foo::Bar);
|
|
|
|
?>
|
|
--EXPECT--
|
|
E:7:"Foo:Bar";
|