- preg_match_all: documentation ( source)
- implode: documentation ( source)
- strtoupper: documentation ( source)
<?php
$string = "Союз Советских Социалистических Республик";
$expr = '/(?<=\s|^)\w/iu';
preg_match_all($expr, $string, $matches);
$result = implode('', $matches[0]);
echo $result = strtoupper($result);