Код: Выделить всё
function fixWords($x){
// define process
$x= strtolower($x);
$x= ucwords($x);
return $x;
}
Подробнее здесь: https://stackoverflow.com/questions/437 ... mes-in-php
Код: Выделить всё
function fixWords($x){
// define process
$x= strtolower($x);
$x= ucwords($x);
return $x;
}