serialization_objects_009.phpt 964 B

1234567891011121314151617181920212223242526272829303132333435
  1. --TEST--
  2. Custom unserialization of classes with no custom unserializer.
  3. --FILE--
  4. <?php
  5. /* Prototype : proto string serialize(mixed variable)
  6. * Description: Returns a string representation of variable (which can later be unserialized)
  7. * Source code: ext/standard/var.c
  8. * Alias to functions:
  9. */
  10. /* Prototype : proto mixed unserialize(string variable_representation)
  11. * Description: Takes a string representation of variable and recreates it
  12. * Source code: ext/standard/var.c
  13. * Alias to functions:
  14. */
  15. $ser = 'C:1:"C":6:{dasdas}';
  16. $a = unserialize($ser);
  17. eval('class C {}');
  18. $b = unserialize($ser);
  19. var_dump($a, $b);
  20. echo "Done";
  21. ?>
  22. --EXPECTF--
  23. Warning: Class __PHP_Incomplete_Class has no unserializer in %sserialization_objects_009.php on line %d
  24. Warning: Class C has no unserializer in %sserialization_objects_009.php on line %d
  25. object(__PHP_Incomplete_Class)#%d (1) {
  26. ["__PHP_Incomplete_Class_Name"]=>
  27. string(1) "C"
  28. }
  29. object(C)#%d (0) {
  30. }
  31. Done