3v4l.org

run code in 300+ PHP versions simultaneously
<?php function acronym(string $text): array { preg_match_all('/\b\w/', $text, $matches); $letters = array_map('strtolower', $matches[0]); return $letters; } print_r(acronym('Ruby on Rails'));

preferences:
31.25 ms | 406 KiB | 5 Q