|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-09-16 18:53 UTC] cataphract@php.net
[2010-09-16 18:54 UTC] cataphract@php.net
-Status: Open
+Status: Feedback
[2010-09-16 23:44 UTC] srinatar@php.net
[2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 16:00:01 2025 UTC |
Description: ------------ I use only native PHP code with no extra plugins loaded. The PHP 5.3.1 crashes and consumes all the RAM when I use the script below. This also happens to all the versions after 5.3.1. Test script: --------------- class Test_Crash { private $virtual_func; public function __construct() { $this->virtual_func = new Test_Crash; } }