|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-06-15 18:27 UTC] crrodriguez at suse dot de
[2008-06-16 06:51 UTC] sertyoan at osyra dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 16:00:01 2025 UTC |
Description: ------------ When creating an object which has as property an object of the same class - this creates an infinite loop -, the page doesn't display (that's normal) but no error is raised. Reproduce code: --------------- class A { private $B; public function __construct() { $this->B = new A(); } } Expected result: ---------------- PHP should bug and raise an error. Actual result: -------------- Nothing. Blank page and no error raised.