mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> Closes GH-6489.
14 lines
124 B
PHP
14 lines
124 B
PHP
--TEST--
|
|
Enum serialize
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {
|
|
case Bar;
|
|
}
|
|
|
|
echo serialize(Foo::Bar);
|
|
|
|
?>
|
|
--EXPECT--
|
|
E:7:"Foo:Bar";
|