forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding test to verify that __sleep can handle parent classes' private…
… members
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--TEST-- | ||
Verifies that it is possible to return private member names of parent classes in __sleep | ||
--FILE-- | ||
<?php | ||
class foo | ||
{ | ||
private $private = 'private'; | ||
protected $protected = 'protected'; | ||
public $public = 'public'; | ||
} | ||
|
||
class bar extends foo | ||
{ | ||
public function __sleep() | ||
{ | ||
return array("\0foo\0private", 'protected', 'public'); | ||
} | ||
} | ||
|
||
var_dump(str_replace("\0", '\0', serialize(new bar()))); | ||
?> | ||
--EXPECTF-- | ||
string(114) "O:3:"bar":3:{s:12:"\0foo\0private";s:7:"private";s:12:"\0*\0protected";s:9:"protected";s:6:"public";s:6:"public";}" |