phpbar.de logo

Mailinglisten-Archive

[php] OOP ($object->next = $object)

[php] OOP ($object->next = $object)

Stefan Andreas Dehn php_(at)_phpcenter.de
Thu, 8 Aug 2002 09:51:22 +0200


Hallo Liste,

vielleicht habe ich ja ein Brett vorm Kopf, aber
das Beispielskript hört bei 't2' auf. Kann mir
jemand auf die Sprünge helfen?


<?

	$t1 = new test('t1');
	$t2 = new test('t2');
	$t3 = new test('t3');
	$t4 = new test('t4');

	$t1->next = $t2;
	$t2->next = $t3;
	$t3->next = $t4;
	$t4->next = $t1; //;-)

	$z = $t1;

	while($z) {

		echo $z->name."<br>";
		$z =  $z->next;

	}

	class test {


		var $next = null;
		var $name = null;


		function test ($n) {

			$this->name = $n;

		}
	}


?>

Danke vorab

Stefan


php::bar PHP Wiki   -   Listenarchive