3v4l.org

run code in 500+ 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.34, 8.2.0 - 8.2.32, 8.3.0 - 8.3.32, 8.4.1 - 8.4.23, 8.5.0 - 8.5.9
array(1) { ["baz"]=> int(2) } object(Foo)#1 (2) { ["bar"]=> int(1) ["baz"]=> int(2) }

preferences:
74.68 ms | 1042 KiB | 4 Q