Skip to content

Instantly share code, notes, and snippets.

@Gregwar
Created September 17, 2016 17:03
Show Gist options
  • Select an option

  • Save Gregwar/09962978995bb32c0ebc7a7a73fad9eb to your computer and use it in GitHub Desktop.

Select an option

Save Gregwar/09962978995bb32c0ebc7a7a73fad9eb to your computer and use it in GitHub Desktop.
<?php
class A {
private $x;
public function __sleep() {
return ['x'];
}
}
class B extends A {
}
$b = new B;
serialize($b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment