DaveChild\TextStatistics\Text::characterCount PHP Method

characterCount() public static method

Alias for textLength, as "letterCount", "wordCount" etc also used
public static characterCount ( string $strText, string $strEncoding = '' ) : integer
$strText string Text to be measured
$strEncoding string Encoding of text
return integer
    public static function characterCount($strText, $strEncoding = '')
    {
        return self::textLength($strText, $strEncoding);
    }