123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- --TEST--
- Object serialization / unserialization: references to external values
- --INI--
- error_reporting = E_ALL & ~E_STRICT
- --FILE--
- <?php
- /* Prototype : proto string serialize(mixed variable)
- * Description: Returns a string representation of variable (which can later be unserialized)
- * Source code: ext/standard/var.c
- * Alias to functions:
- */
- /* Prototype : proto mixed unserialize(string variable_representation)
- * Description: Takes a string representation of variable and recreates it
- * Source code: ext/standard/var.c
- * Alias to functions:
- */
- function check(&$obj) {
- var_dump($obj);
- $ser = serialize($obj);
- var_dump($ser);
-
- $uobj = unserialize($ser);
- var_dump($uobj);
- $uobj->a = "obj->a.changed";
- var_dump($uobj);
- $uobj->b = "obj->b.changed";
- var_dump($uobj);
- $uobj->c = "obj->c.changed";
- var_dump($uobj);
- }
- echo "\n\n--- a refs external:\n";
- $ext = 1;
- $obj = new stdClass;
- $obj->a = &$ext;
- $obj->b = 1;
- $obj->c = 1;
- check($obj);
- echo "\n\n--- b refs external:\n";
- $ext = 1;
- $obj = new stdClass;
- $obj->a = 1;
- $obj->b = &$ext;
- $obj->c = 1;
- check($obj);
- echo "\n\n--- c refs external:\n";
- $ext = 1;
- $obj = new stdClass;
- $obj->a = 1;
- $obj->b = 1;
- $obj->c = &$ext;
- check($obj);
- echo "\n\n--- a,b ref external:\n";
- $ext = 1;
- $obj = new stdClass;
- $obj->a = &$ext;
- $obj->b = &$ext;
- $obj->c = 1;
- check($obj);
- echo "\n\n--- a,b,c ref external:\n";
- $ext = 1;
- $obj = new stdClass;
- $obj->a = &$ext;
- $obj->b = &$ext;
- $obj->c = &$ext;
- check($obj);
- echo "Done";
- ?>
- --EXPECTF--
- --- a refs external:
- object(stdClass)#%d (3) {
- ["a"]=>
- &int(1)
- ["b"]=>
- int(1)
- ["c"]=>
- int(1)
- }
- string(55) "O:8:"stdClass":3:{s:1:"a";i:1;s:1:"b";i:1;s:1:"c";i:1;}"
- object(stdClass)#%d (3) {
- ["a"]=>
- int(1)
- ["b"]=>
- int(1)
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- string(14) "obj->a.changed"
- ["b"]=>
- int(1)
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- string(14) "obj->a.changed"
- ["b"]=>
- string(14) "obj->b.changed"
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- string(14) "obj->a.changed"
- ["b"]=>
- string(14) "obj->b.changed"
- ["c"]=>
- string(14) "obj->c.changed"
- }
- --- b refs external:
- object(stdClass)#%d (3) {
- ["a"]=>
- int(1)
- ["b"]=>
- &int(1)
- ["c"]=>
- int(1)
- }
- string(55) "O:8:"stdClass":3:{s:1:"a";i:1;s:1:"b";i:1;s:1:"c";i:1;}"
- object(stdClass)#%d (3) {
- ["a"]=>
- int(1)
- ["b"]=>
- int(1)
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- string(14) "obj->a.changed"
- ["b"]=>
- int(1)
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- string(14) "obj->a.changed"
- ["b"]=>
- string(14) "obj->b.changed"
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- string(14) "obj->a.changed"
- ["b"]=>
- string(14) "obj->b.changed"
- ["c"]=>
- string(14) "obj->c.changed"
- }
- --- c refs external:
- object(stdClass)#%d (3) {
- ["a"]=>
- int(1)
- ["b"]=>
- int(1)
- ["c"]=>
- &int(1)
- }
- string(55) "O:8:"stdClass":3:{s:1:"a";i:1;s:1:"b";i:1;s:1:"c";i:1;}"
- object(stdClass)#%d (3) {
- ["a"]=>
- int(1)
- ["b"]=>
- int(1)
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- string(14) "obj->a.changed"
- ["b"]=>
- int(1)
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- string(14) "obj->a.changed"
- ["b"]=>
- string(14) "obj->b.changed"
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- string(14) "obj->a.changed"
- ["b"]=>
- string(14) "obj->b.changed"
- ["c"]=>
- string(14) "obj->c.changed"
- }
- --- a,b ref external:
- object(stdClass)#%d (3) {
- ["a"]=>
- &int(1)
- ["b"]=>
- &int(1)
- ["c"]=>
- int(1)
- }
- string(55) "O:8:"stdClass":3:{s:1:"a";i:1;s:1:"b";R:2;s:1:"c";i:1;}"
- object(stdClass)#%d (3) {
- ["a"]=>
- &int(1)
- ["b"]=>
- &int(1)
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- &string(14) "obj->a.changed"
- ["b"]=>
- &string(14) "obj->a.changed"
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- &string(14) "obj->b.changed"
- ["b"]=>
- &string(14) "obj->b.changed"
- ["c"]=>
- int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- &string(14) "obj->b.changed"
- ["b"]=>
- &string(14) "obj->b.changed"
- ["c"]=>
- string(14) "obj->c.changed"
- }
- --- a,b,c ref external:
- object(stdClass)#%d (3) {
- ["a"]=>
- &int(1)
- ["b"]=>
- &int(1)
- ["c"]=>
- &int(1)
- }
- string(55) "O:8:"stdClass":3:{s:1:"a";i:1;s:1:"b";R:2;s:1:"c";R:2;}"
- object(stdClass)#%d (3) {
- ["a"]=>
- &int(1)
- ["b"]=>
- &int(1)
- ["c"]=>
- &int(1)
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- &string(14) "obj->a.changed"
- ["b"]=>
- &string(14) "obj->a.changed"
- ["c"]=>
- &string(14) "obj->a.changed"
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- &string(14) "obj->b.changed"
- ["b"]=>
- &string(14) "obj->b.changed"
- ["c"]=>
- &string(14) "obj->b.changed"
- }
- object(stdClass)#%d (3) {
- ["a"]=>
- &string(14) "obj->c.changed"
- ["b"]=>
- &string(14) "obj->c.changed"
- ["c"]=>
- &string(14) "obj->c.changed"
- }
- Done
|