3v4l.org

run code in 300+ PHP versions simultaneously
<?php #[Attribute(Attribute::TARGET_PROPERTY)] class NotSerializable {} class Foo { #[NotSerializable] public $bar = 1; public $baz = 2; public function __serialize(): array { $data = []; foreach ((new ReflectionObject($this))->getProperties() as $property) { if ($property->getAttributes(NotSerializable::class)) { continue; } $data[$property->getName()] = $property->getValue($this); } var_dump($data); return $data; } } var_dump(unserialize(serialize(new Foo())));
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.7
array(1) { ["baz"]=> int(2) } object(Foo)#1 (2) { ["bar"]=> int(1) ["baz"]=> int(2) }

preferences:
58.2 ms | 402 KiB | 62 Q