Skip to content

Instantly share code, notes, and snippets.

@aurora
Created November 10, 2011 11:30
Show Gist options
  • Save aurora/1354654 to your computer and use it in GitHub Desktop.
Save aurora/1354654 to your computer and use it in GitHub Desktop.
<?php
class a {
protected $msg = 'hallo';
function write() { print $this->msg; }
}
class b extends a {
protected $msg = 'world';
function write() { parent::write(); }
}
$b = new b();
$b->write();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment