3v4l.org

run code in 300+ PHP versions simultaneously
<?php function first_letter($str) { return implode('', array_map(function($v) { return $v[0]; },array_filter(array_map('trim',explode(' ', $str)))));; } $str=" Let's try with more spaces for fun . "; echo first_letter($str); ?>

preferences:
80.08 ms | 402 KiB | 5 Q