Skip to content

Instantly share code, notes, and snippets.

@stelonix
Last active May 22, 2018 20:58
Show Gist options
  • Save stelonix/e706ea08399a1d23796791b20d786016 to your computer and use it in GitHub Desktop.
Save stelonix/e706ea08399a1d23796791b20d786016 to your computer and use it in GitHub Desktop.
php
<?php
// Friend and property support
// Read-only properties
abstract class PropertyVars {
protected $__visible = array();
public function &__get($key) {
if(in_array($key, $this->__visible)) {
return $this->$key;
}
// normal __get() code here
trigger_error('Cannot access private property ' . __CLASS__ .'::$'.$key, E_USER_ERROR);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment