$str="welcome to plus2net.com. you can learn web programming here";
$str=ucwords($str);
echo $str;
The output is here
Welcome To Plus2net.com. You Can Learn Web Programming Here
Syntax
$output=ucwords($input_str [,string $delimiters]);
Parameter | DESCRIPTION |
---|---|
$input_str | Required : Input string |
$delimiters | Optional : contains the word separator characters. |
$my_str="hello,welcome";
echo ucwords($my_str,',');
Output is here
Hello,Welcome
Now we will use | as delimiters
$my_str="hello,welcome|home";
echo ucwords($my_str,'|');
Output is here
Hello,welcome|Home
Using both , and | as delimiters
$my_str="hello,welcome|home";
echo ucwords($my_str,'|,');
Output is here
Hello,Welcome|Home
$str = 'hello-world_php-tutorial';
echo ucwords($str, "-_"); // Output: Hello-World_Php-Tutorial
$str = 'привет мир';
echo mb_convert_case($str, MB_CASE_TITLE, "UTF-8"); // Output: Привет Мир
Author
🎥 Join me live on YouTubePassionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.