|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2008-08-14 07:40 UTC] foo at bar dot com
Description:
------------
Yet another great example why you guys should concentrate on stability instead of marketing.
This makes me think that you're incompetent
Reproduce code:
---------------
<?php
class A {
public function __construct() {
self::doIt();
}
public static function doIt() {
C::doIt();
}
}
class C extends A {
}
$c = new C;
Expected result:
----------------
What ever but segfault
Actual result:
--------------
segfault
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 13:00:01 2025 UTC |
what you do is: function a() { a(); } a(); recursion > not a bug.