1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?phpnamespace DeepCopy\f008;class A{ private $foo; public function __construct($foo) { $this->foo = $foo; } public function getFoo() { return $this->foo; }}