|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-09-01 11:10 UTC] zeev
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 23 06:00:01 2025 UTC |
This is a pretty nasty bug. This following code will cause PHP to crash under NT. <?php class example { var $x; function example($a) { $this->x=$a; } function test() { $blah = new example(5); } } print("Done."); ?>