php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #389 Static variable into Class recursiv function
Submitted: 1998-05-20 07:46 UTC Modified: 1998-05-20 17:39 UTC
From: andri at rti-hq dot kharkov dot ua Assigned:
Status: Closed Package: Parser error
PHP Version: 3.0 Release Candidate 4 OS: Linux 2.0.33
Private report: No CVE-ID: None
 [1998-05-20 07:46 UTC] andri at rti-hq dot kharkov dot ua
Static variable into Class Recursiv function do not work property
Script exsample:

<?
class clss {
var $t;

        function recursiv() {
        static $r = 0;
        $r++;
        echo "$r<BR>\n";
                if ($r < $this->t) {
                $this->recursiv();
                }
        }
}

$n = new clss;
$n->t = 10;
$n->recursiv();
?>

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1998-05-20 17:39 UTC] zeev
This works exactly as expected.
However, static variables inside member functions should
be avoided, since the same static variable is shared
among ALL instances of the parent class!
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue Jan 21 11:01:30 2025 UTC