3v4l.org

run code in 300+ PHP versions simultaneously
<?php $foo = 'hello world!'; $foo = ucfirst($foo); // Hello world! $bar = 'HELLO WORLD!'; $bar = ucfirst($bar); // HELLO WORLD! $bar = ucfirst(strtolower($bar)); // Hello world! echo $foo; echo $bar;

preferences:
65.05 ms | 402 KiB | 5 Q