Structures (records)

<?php

//In PHP there are no structures
class Setting {
    //type field
    static $mode = 0;

    //type method
    static function setNextMode() {
        Setting::$mode = (Setting::$mode + 1) % 3;
    }
}

Setting::$mode = 3;
Setting::setNextMode();
//Setting::$mode is 1
echo Setting::$mode;