Skip to content

Instantly share code, notes, and snippets.

@blar
Created October 1, 2013 09:34
Show Gist options
  • Select an option

  • Save blar/6776031 to your computer and use it in GitHub Desktop.

Select an option

Save blar/6776031 to your computer and use it in GitHub Desktop.
<?php
class A {
private $b;
public function __construct($b) {
$this->b = $b;
}
public function getB($from) {
return $from->b;
}
}
$foo = new A(23);
$bar = new A(42);
var_dump($bar->getB($foo));
int(23)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment