Skip to main content
🔮 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 is the output?