Skip to content

Instantly share code, notes, and snippets.

@Neoglyph
Created January 18, 2018 12:33
Show Gist options
  • Save Neoglyph/eda1f68a9a4cc2f252d1ceaf2210d8a2 to your computer and use it in GitHub Desktop.
Save Neoglyph/eda1f68a9a4cc2f252d1ceaf2210d8a2 to your computer and use it in GitHub Desktop.
Count capital leters inside a sentence
<?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