How to the get the first letter of each second word in a string in PHP

1 Answer

0 votes
$str = "PHP C Python Java Go Rust C# TypeScript Node.js";
$words = explode(" ", $str);
$size = count($words);

for ($i = 1; $i < $size; $i += 2) {
	echo $words[$i][0] . " ";
}



/*
run:

C J R T 

*/

 



answered Jun 6, 2023 by avibootz
edited Jun 6, 2023 by avibootz
...