Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$str = 'abcdef';
<?php $string = 'abcd'; $offset = 2; function checkAndChangeCase($string, $offset) { $char = ord($string{$offset}); if ($char > 96 && $char < 123) { $string{$offset} = chr($char ^ 32); } return $string; } echo checkAndChangeCase($string, $offset);
chr($char ^ 32)
<?php $string = 'abCd'; $offset = 2; function checkAndChangeCase($string, $offset) { $char = mb_strtoupper($string{$offset}); if ($string{$offset} !== $char) { $string{$offset} = $char; } return $string; } echo checkAndChangeCase($string, $offset);