<?php $string = 'i must say hello to my handsome friends'; echo preg_replace_callback('/(\b)?\w(?(1)|\b)/', fn($m) => strtoupper($m[0]), $string);
You have javascript disabled. You will not be able to edit any code.