Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
Hous каза:е нищо не показва :lol:PHP:<? function spam( $string) { $string= "asd_asd_asd"; $string = ucfirst($string); $string = preg_replace("/_/", " ", $string); return $string; } ?>
$word = "asd_asd_asd";
echo spam($word);
function spam( $string) {
$string = ucfirst($string);
$string = preg_replace("/^_$/", " ", $string);
return $string;
}