All pastes #2048259 Raw Edit

Miscellany

public text v1 · immutable
#2048259 ·published 2011-04-19 14:02 UTC
rendered paste body
<?php

class A {
	private $test_var;
	
	function __construct () {
		$this->test_var = "set in class A";
	}
	
	function dumpTestVar () {
		var_dump ($this->test_var);
	}
}

class B extends A {
	private $test_var;
	
	function __construct () {
		$this->test_var = "set in class B";
	}
}

$ClassB = new B ();

$ClassB->dumpTestVar ();

?>