<?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'));
You have javascript disabled. You will not be able to edit any code.