🔮 Output PredictionPH PHP Hard⚡+35 XP
Static Property
What does this print?
PHP
class Counter {
static $count = 0;
function __construct() { self::$count++; }
}
new Counter(); new Counter();
echo Counter::$count;What does this print?
class Counter {
static $count = 0;
function __construct() { self::$count++; }
}
new Counter(); new Counter();
echo Counter::$count;