Created
February 4, 2014 00:09
-
-
Save Rican7/8795094 to your computer and use it in GitHub Desktop.
This is a quick demonstration to show how PHP classes can access other classes/sub-classes private properties.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Doge | |
{ | |
private $name; | |
public function __construct($name) | |
{ | |
$this->name = $name; | |
} | |
public function getName() | |
{ | |
return $this->name; | |
} | |
public function equalsWithSameType(self $other) | |
{ | |
return ($other->name === $this->name); | |
} | |
public function equalsWithSubType(DogeCoin $sub) | |
{ | |
return ($sub->name === $this->name); | |
} | |
public function equalsWithRandomType(SomethingElseCompletely $whatever_man) | |
{ | |
return ($whatever_man->name === $this->name); | |
} | |
} | |
class DogeCoin extends Doge | |
{ | |
private $name; | |
} | |
class SomethingElseCompletely | |
{ | |
private $name; | |
public function __construct($name) { | |
$this->name = $name; | |
} | |
} | |
$first_doge = new Doge('a'); | |
$second_doge = new Doge('a'); | |
$doge_coin = new DogeCoin('a'); | |
$something_else_completely = new SomethingElseCompletely('a'); | |
var_dump($first_doge->equalsWithSameType($second_doge)); | |
var_dump($first_doge->equalsWithSubType($doge_coin)); | |
var_dump($first_doge->equalsWithRandomType($something_else_completely)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment