Category Archives: Uncategorized

Development
http://drupal.org/contributors-guide

Forum
http://drupal.org/forum

Download
http://drupal.org/project

Using static variables

Another important feature of variable scoping is the static variable. A static variable exists only in a local function scope, but it does not lose its value when program execution leaves this scope.

<?php
function Test()
{
    static $a = 0;
    echo $a;
    $a++;
}
?>