php-src/ext/standard/tests/serialize/bug64354_3.phpt
Xinchen Hui f52b2e6a65 Fixed bug #64354 (Unserialize array of objects whose class can't be autoloaded fail)
about the __sleep one, since php_serialize_* are all void function,
so,,only check exception at the very begining
2013-03-09 23:00:58 +08:00

30 lines
491 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--
string(6) "Failed"