1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/standard/tests/serialize/bug64354_3.phpt
2025-10-06 10:30:27 +02:00

31 lines
697 B
PHP

--TEST--
Bug #64354 (Unserialize array of objects whose class can't be autoloaded fail)
--FILE--
<?php
class A {
public function __sleep() {
throw new Exception("Failed");
}
}
class B implements Serializable {
public function serialize() {
return NULL;
}
public function unserialize($data) {
}
}
$data = array(new A, new B);
try {
serialize($data);
} catch (Exception $e) {
var_dump($e->getMessage());
}
?>
--EXPECTF--
Deprecated: %s implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
string(6) "Failed"