Created
January 18, 2018 12:33
-
-
Save Neoglyph/eda1f68a9a4cc2f252d1ceaf2210d8a2 to your computer and use it in GitHub Desktop.
Count capital leters inside a sentence
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
public static function countCapitalLetters($string){ | |
$lowerCase = mb_strtolower($string); | |
return strlen($lowerCase) - similar_text($string, $lowerCase); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment