serialization_objects_006.phpt 990 B

12345678910111213141516171819202122232425262728
  1. --TEST--
  2. Behaviour of incomplete class is preserved even when it was not created by unserialize().
  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. $a = new __PHP_Incomplete_Class;
  16. var_dump($a);
  17. var_dump($a->p);
  18. echo "Done";
  19. ?>
  20. --EXPECTF--
  21. object(__PHP_Incomplete_Class)#%d (0) {
  22. }
  23. Notice: main(): The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition "unknown" of the object you are trying to operate on was loaded _before_ unserialize() gets called or provide an autoloader to load the class definition in %s on line %d
  24. NULL
  25. Done