Skip to content

Instantly share code, notes, and snippets.

@yohgaki
Created November 20, 2011 00:23
Show Gist options
  • Save yohgaki/1379592 to your computer and use it in GitHub Desktop.
Save yohgaki/1379592 to your computer and use it in GitHub Desktop.
PHP 5.4: Accessor with trait example
<?php
// Example code how to eliminate getter and setter methods
// with traits introduced from PHP 5.4
trait Accessors {
public function __get($name) {
if ($this->r_property[$name])
return $this->$name;
else
trigger_error("Access to read protected property");
}
public function __set($name, $value) {
if ($this->w_property[$name])
$this->$name = $value;
else
trigger_error("Access to write protected property");
}
}
class OrderLine {
use Accessors;
private $r_property = array('price'=>1, 'amount'=>1);
private $w_property = array('price'=>0, 'amount'=>1);
protected $price;
private $amount;
private $tax = 1.15; // property without getter/setter
public function getTotal() {
return $this->price * $this->amount * $this->tax;
}
}
$line = new OrderLine;
$line->price = 20;
$line->amount = 3;
echo "Total cost: ".$line->getTotal();
?>
@anyt
Copy link

anyt commented Dec 29, 2013

For IDE visibility we can use PhpDoc

@jon49
Copy link

jon49 commented Oct 16, 2014

How would you do inheritance with this (assuming you are using Accessor in both the parent and the child)? Or is it even possible?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment