$str = 'aDADAffaAcvC'; $result = 0; for ($i = 0; $i < strlen($str); $i++) { if ($str[$i] === strtolower($str[$i])) { $result++; } } echo $result;