Skip to content

Instantly share code, notes, and snippets.

@niklasvh
Created July 24, 2012 17:27
Show Gist options
  • Save niklasvh/3171349 to your computer and use it in GitHub Desktop.
Save niklasvh/3171349 to your computer and use it in GitHub Desktop.
<?php
class setter {
public $n;
public $x = array('a' => 1, 'b' => 2, 'c' => 3);
function __get($nm) {
echo "Getting [$nm]\n";
if (isset($this->x[$nm])) {
$r = $this->x[$nm];
echo "Returning: $r\n";
return $r;
}
else {
echo "Nothing!\n";
}
}
function __set($nm, $val) {
echo "Setting [$nm] to $val\n";
if (isset($this->x[$nm])) {
$this->x[$nm] = $val;
echo "OK!\n";
}
else {
echo "Not OK!\n";
}
}
}
$foo = new Setter();
// this doesn't go through __set()... should it?
$foo->n = 1;
// the rest are fine...
$foo->a = 100;
$foo->a++;
$foo->z++;
var_dump($foo);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment