Skip to content

Instantly share code, notes, and snippets.

@Rican7
Created February 4, 2014 00:09
Show Gist options
  • Save Rican7/8795094 to your computer and use it in GitHub Desktop.
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.
<?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