All pastes #2058699 Raw Edit

Miscellany

public php v1 · immutable
#2058699 ·published 2011-05-14 05:00 UTC
rendered paste body
<?phpclass Main{	function __construct()	{		$sub1 = new Sub1();		$sub2 = new Sub2();				$sub2->doSomething();	}}class Sub1{	function somethingElse()	{		// blah blah	}}class Sub2{	public function doSomething()	{		/// call a function in the $sub1 instance??? $sub1->somethingElse();??	}}?>