Skip to content

Zend: Deprecate __sleep() and __wakeup() #19435

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Zend/tests/enum/__sleep.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ enum Foo {

?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Fatal error: Enum Foo cannot include magic method __sleep in %s on line %d
2 changes: 2 additions & 0 deletions Zend/tests/enum/__wakeup.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ enum Foo {

?>
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Fatal error: Enum Foo cannot include magic method __wakeup in %s on line %d
1 change: 1 addition & 0 deletions Zend/tests/lazy_objects/oss_fuzz_71446.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ $obj = $reflector->newLazyProxy(function() {
serialize($obj);
?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
1 change: 1 addition & 0 deletions Zend/tests/lazy_objects/serialize___sleep.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ try {

?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
Init on serialize and successful initialization
string(27) "O:1:"C":1:{s:4:"%0C%0b";i:1;}"
Init on serialize and failed initialization
Expand Down
1 change: 1 addition & 0 deletions Zend/tests/lazy_objects/serialize___sleep_initializes.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ $obj = $reflector->newLazyProxy(function ($obj) {
test('Proxy', $obj);

--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
# Ghost:
string(11) "initializer"
string(24) "O:1:"C":1:{s:1:"a";i:1;}"
Expand Down
1 change: 1 addition & 0 deletions Zend/tests/lazy_objects/serialize___sleep_skip_flag.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ $obj = $reflector->newLazyProxy(function ($obj) {
test('Proxy', $obj);

--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
# Ghost:
string(12) "O:1:"C":0:{}"
object(C)#%d (0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ $obj = $reflector->newLazyProxy(function ($obj) {
test('Proxy', $obj);

--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
# Ghost:
string(11) "initializer"
int(1)
Expand Down
3 changes: 2 additions & 1 deletion Zend/tests/serialize/bug34045.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ $db_str = serialize($db);
$db2 = unserialize($db_str);
echo "ok\n";
?>
--EXPECT--
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
ok
9 changes: 9 additions & 0 deletions Zend/zend_compile.c
Original file line number Diff line number Diff line change
Expand Up @@ -9272,6 +9272,15 @@ static void zend_compile_class_decl(znode *result, zend_ast *ast, bool toplevel)
ce->ce_flags |= ZEND_ACC_TOP_LEVEL;
}

if (UNEXPECTED(zend_hash_exists(&ce->function_table, ZSTR_KNOWN(ZEND_STR_SLEEP)) && ce->__serialize == NULL)) {
zend_error(E_DEPRECATED, "The __sleep() serialization hook has been deprecated."
" Implement __serialize() instead (or in addition, if support for old PHP versions is necessary)");
}
if (UNEXPECTED(zend_hash_exists(&ce->function_table, ZSTR_KNOWN(ZEND_STR_WAKEUP)) && ce->__unserialize == NULL)) {
zend_error(E_DEPRECATED, "The __wakeup() serialization hook has been deprecated."
" Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary)");
}

/* We currently don't early-bind classes that implement interfaces or use traits */
if (!ce->num_interfaces && !ce->num_traits && !ce->num_hooked_prop_variance_checks
#ifdef ZEND_OPCACHE_SHM_REATTACHMENT
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/bug62852_var2.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ try {
var_dump( $foo );
?>
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Fatal error: Uncaught Error: Invalid serialization data for DateTime object in %sbug62852_var2.php:%d
Stack trace:
#0 [internal function]: DateTime->__unserialize(Array)
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/bug62852_var3.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ try {
var_dump( $foo );
?>
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Fatal error: Uncaught Error: Invalid serialization data for DateTime object in %sbug62852_var3.php:%d
Stack trace:
#0 [internal function]: DateTime->__unserialize(Array)
Expand Down
3 changes: 3 additions & 0 deletions ext/dom/tests/gh8996.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ echo "Serialized:\n-----------\n$serialized\n-----------\nRestored:\n-----------

?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
=== __sleep and __wakeup ===
string(144) "O:34:"SerializableDomDocumentSleepWakeup":1:{s:43:"%0SerializableDomDocumentSleepWakeup%0xmlData";s:39:"<?xml version="1.0"?>
<tag>value</tag>
Expand Down
4 changes: 4 additions & 0 deletions ext/pdo_mysql/tests/pdo_mysql_stmt_fetch_class.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ $db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test_stmt_fetch_class');
?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

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
Creating an object, serializing it and writing it to DB...
myclass::singleton(Creating object)
Expand Down
4 changes: 4 additions & 0 deletions ext/pdo_mysql/tests/pdo_mysql_stmt_fetch_serialize.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ $db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test_stmt_fetch_serialize');
?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

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
Creating an object, serializing it and writing it to DB...
myclass::singleton(Creating object)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ $db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test_stmt_fetchserialize_fetch_class');
?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can these tests not be rewritten to use the new methods?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, because those tests are for the deprecated PDO::FETCH_SERIALIZE option which relies on the deprecated Serialize interface methods.


Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

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
Creating an object, serializing it and writing it to DB...
myclass::singleton(Creating object)
Expand Down
1 change: 1 addition & 0 deletions ext/phar/tests/phar_metadata_write3.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ unlink(__DIR__ . '/' . basename(__FILE__, '.clean.php') . '.phar.php');
unlink(__DIR__ . '/' . basename(__FILE__, '.clean.php') . '.phar.php.copy.php');
?>
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
Reading file contents through stream wrapper
string(18) "contents of file a"
Original metadata
Expand Down
3 changes: 3 additions & 0 deletions ext/phar/tests/phar_metadata_write4.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ unlink(__DIR__ . '/' . basename(__FILE__, '.clean.php') . '.phar.php');
unlink(__DIR__ . '/' . basename(__FILE__, '.clean.php') . '.phar.php.copy.php');
?>
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
In __destruct 1
string(1) "a"
Loading metadata for 'a' without allowed_classes
Expand Down
4 changes: 2 additions & 2 deletions ext/session/tests/bug53141.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ spl_autoload_register(function ($class) {

class Foo
{
function __sleep()
function __serialize()
{
new Bar;
return array();
return [];
}
}

Expand Down
1 change: 1 addition & 0 deletions ext/spl/tests/SplObjectStorage/bug70365.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ function ptr2str($ptr)
}
?>
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
array(5) {
[0]=>
int(1)
Expand Down
1 change: 1 addition & 0 deletions ext/spl/tests/bug70366.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ function ptr2str($ptr)
}
?>
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
array(5) {
[0]=>
int(1)
Expand Down
5 changes: 4 additions & 1 deletion ext/standard/tests/serialize/001.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
serialize()/unserialize()/var_dump()
serialize()/unserialize()/var_dump() using __sleep() and __wakeup()
--INI--
serialize_precision=100
--FILE--
Expand Down Expand Up @@ -78,6 +78,9 @@ $a = unserialize($data);
var_dump($a);
?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
N;
b:1;
b:0;
Expand Down
8 changes: 8 additions & 0 deletions ext/standard/tests/serialize/005.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,14 @@ echo "===AutoNA===\n";
var_dump(unserialize('O:22:"autoload_not_available":0:{}'));
?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

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
===O1===
TestOld::__sleep()
Expand Down
3 changes: 2 additions & 1 deletion ext/standard/tests/serialize/__serialize_004.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ var_dump($s = serialize($obj));
var_dump(unserialize($s));

?>
--EXPECT--
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
string(126) "O:6:"Wakeup":1:{s:4:"data";a:1:{i:0;O:11:"Unserialize":1:{i:0;O:6:"Wakeup":1:{s:4:"data";a:1:{i:0;O:11:"Unserialize":0:{}}}}}}"
__unserialize() called
array(0) {
Expand Down
1 change: 1 addition & 0 deletions ext/standard/tests/serialize/bug14293.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ var_dump($t);

?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
__sleep called

Warning: serialize(): "b" returned as member variable from __sleep() but does not exist in %s on line %d
Expand Down
3 changes: 2 additions & 1 deletion ext/standard/tests/serialize/bug21957.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ echo $s . "\n";

var_dump(unserialize($s));
?>
--EXPECT--
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
array(2) {
["one"]=>
string(3) "ABC"
Expand Down
4 changes: 4 additions & 0 deletions ext/standard/tests/serialize/bug35895.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@ serialize($obj);

?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Warning: serialize(): "parents" returned as member variable from __sleep() but does not exist in %s on line %d
3 changes: 2 additions & 1 deletion ext/standard/tests/serialize/bug64354_2.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ try {
var_dump($e->getMessage());
}
?>
--EXPECT--
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
string(6) "Failed"
2 changes: 2 additions & 0 deletions ext/standard/tests/serialize/bug64354_3.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,7 @@ try {
}
?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

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"
5 changes: 4 additions & 1 deletion ext/standard/tests/serialize/bug65806.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ function check(myObjC $obj) {
return 'successful';
}
?>
--EXPECT--
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
SCRIPT START
check successful
start serialize/unserialize
Expand Down
3 changes: 2 additions & 1 deletion ext/standard/tests/serialize/bug68976.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ for($i = 0; $i < 5; $i++) {

var_dump($data);
?>
--EXPECT--
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
array(2) {
[0]=>
object(evilClass)#1 (0) {
Expand Down
5 changes: 4 additions & 1 deletion ext/standard/tests/serialize/bug69210.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ echo $si . "\n";
var_dump(unserialize($ss));
var_dump(unserialize($si));
?>
--EXPECT--
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
O:10:"testString":1:{s:1:"a";b:1;}
O:11:"testInteger":1:{s:1:"a";b:1;}
object(testString)#3 (1) {
Expand Down
1 change: 1 addition & 0 deletions ext/standard/tests/serialize/bug69425.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ var_dump($data);

?>
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
int(1)
array(2) {
[0]=>
Expand Down
4 changes: 3 additions & 1 deletion ext/standard/tests/serialize/bug70172_2.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ function ptr2str($ptr)
}
?>
--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
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: obj 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
array(2) {
[0]=>
object(obj2)#%d (1) {
Expand Down
3 changes: 2 additions & 1 deletion ext/standard/tests/serialize/bug70513.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ var_dump($x);
var_dump($obj);

?>
--EXPECT--
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
array(1) {
[0]=>
int(1)
Expand Down
2 changes: 2 additions & 0 deletions ext/standard/tests/serialize/bug71995.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ var_dump($s);
var_dump(unserialize($s));
?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Warning: serialize(): "b" is returned from __sleep() multiple times in %s on line %d
string(39) "O:1:"A":1:{s:1:"b";O:8:"stdClass":0:{}}"
object(A)#%d (1) {
Expand Down
4 changes: 4 additions & 0 deletions ext/standard/tests/serialize/bug72663.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ try {

?>
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Warning: unserialize(): Error at offset 17 of 24 bytes in %s on line %d
bool(false)

Expand Down
1 change: 1 addition & 0 deletions ext/standard/tests/serialize/bug72731.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ var_dump(unserialize($poc));

?>
--EXPECTF--
Deprecated: The __wakeup() serialization hook has been deprecated. Implement __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
%s(73588229205)
3 changes: 2 additions & 1 deletion ext/standard/tests/serialize/bug73154.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ class a {
$s = 'a:1:{i:0;O:1:"a":1:{s:1:"a";R:2;}}';
var_dump(serialize(unserialize($s)));
?>
--EXPECT--
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
string(22) "a:1:{i:0;O:1:"a":0:{}}"
4 changes: 4 additions & 0 deletions ext/standard/tests/serialize/bug79526.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ serialize(new B());
?>
Done
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Warning: serialize(): A::__sleep() should return an array only containing the names of instance-variables to serialize in %s on line %d

Warning: serialize(): B::__sleep() should return an array only containing the names of instance-variables to serialize in %s on line %d
Expand Down
2 changes: 2 additions & 0 deletions ext/standard/tests/serialize/bug81163.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ class bar extends foo
serialize(new bar());
?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Warning: serialize(): bar::__sleep() should return an array only containing the names of instance-variables to serialize in %s on line %d
3 changes: 2 additions & 1 deletion ext/standard/tests/serialize/sleep_deref.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ class Test {
var_dump(serialize(new Test));

?>
--EXPECT--
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
string(28) "O:4:"Test":1:{s:1:"x";i:42;}"
2 changes: 2 additions & 0 deletions ext/standard/tests/serialize/sleep_mangled_name_clash.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ $s = serialize(new Test);
var_dump(str_replace("\0", '\0', $s));
?>
--EXPECTF--
Deprecated: The __sleep() serialization hook has been deprecated. Implement __serialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d

Warning: serialize(): "priv" is returned from __sleep() multiple times in %s on line %d
string(37) "O:4:"Test":1:{s:10:"\0Test\0priv";N;}"
Loading