About:
Horje.com PHP HTML CSS JAVAScript Editor.
Version: 1.0
PHP Version: 7.3.33
Restore
Store
Run »
« Get
<?php function uc_first_word ($string) { $s = explode(' ', $string); $s[0] = strtoupper($s[0]); $s = implode(' ', $s); return $s; } $title = 'Wwe Raw 2025'; echo uc_first_word($title); ?>