<?php Class abc{ // create a class public static $a; static function getsize() { return ++self::$a; //increment a static variable } static function setsize($n) { self::$a = $n; // set size of static variable } } abc::setsize(100); // set value of static variable echo abc::getsize(); //call getsize function output is 100 but it must be 101
You have javascript disabled. You will not be able to edit any code.