3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MyCounter extends Counter { public function printCounterInfo() { printf("Counter's name is '%s' and is%s persistent. Its current value is %d.\n", $this->getMeta(COUNTER_META_NAME), $this->getMeta(COUNTER_META_IS_PERSISTENT) ? '' : ' not', $this->value); } } Counter::setCounterClass("MyCounter"); if (($counter_one = Counter::getNamed("one")) === NULL) { $counter_one = new Counter("one", 0, COUNTER_FLAG_PERSIST); } $counter_one->bumpValue(2); // we aren't allowed to "set" the value directly $counter_two = new Counter("two", 5); $counter_three = Counter::getNamed("three"); $counter_four = new Counter("four", 2, COUNTER_FLAG_PERSIST | COUNTER_FLAG_SAVE | COUNTER_FLAG_NO_OVERWRITE); $counter_four->bumpValue(1); $counter_one->printCounterInfo(); $counter_two->printCounterInfo(); $counter_three->printCounterInfo(); $counter_four->printCounterInfo(); ?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Class "Counter" not found in /in/GAVao:2 Stack trace: #0 {main} thrown in /in/GAVao on line 2
Process exited with code 255.
Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Fatal error: Uncaught Error: Class 'Counter' not found in /in/GAVao:2 Stack trace: #0 {main} thrown in /in/GAVao on line 2
Process exited with code 255.
Output for 7.0.0 - 7.0.31, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33
Fatal error: Class 'Counter' not found in /in/GAVao on line 2
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.38
Fatal error: Class 'Counter' not found in /in/GAVao on line 3
Process exited with code 255.

preferences:
210.12 ms | 402 KiB | 337 Q