--TEST-- Bug #76737: Unserialized reflection objects are broken, they shouldn't be serializable --FILE-- getMessage(), "\n"; } try { $s = 'C:15:"ReflectionClass":0:{}'; var_dump(unserialize($s)); } catch (Exception $e) { echo $e->getMessage(), "\n"; } try { $s = 'O:15:"ReflectionClass":0:{}'; var_dump(unserialize($s)); } catch (Exception $e) { echo $e->getMessage(), "\n"; } ?> --EXPECTF-- Serialization of 'ReflectionClass' is not allowed Unserialization of 'ReflectionClass' is not allowed Unserialization of 'ReflectionClass' is not allowed