3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace App\Function; function str_repeat() { return __FUNCTION__; } $filter = 'str_repeat'; echo $filter('a', 10) . PHP_EOL; $filter = '\str_repeat'; echo $filter('a', 10) . PHP_EOL; $filter = 'App\Function\str_repeat'; echo $filter('a', 10) . PHP_EOL;
Output for 8.0.1 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.27, 8.4.1 - 8.4.14
aaaaaaaaaa aaaaaaaaaa App\Function\str_repeat

preferences:
105.12 ms | 406 KiB | 5 Q