Count Characters

Count the number of characters in a string, with option to exclude spaces.

Code

General
$includeSpaces ? strlen($str) : strlen(str_replace(' ', '', $str));

Parameters

The string to count characters in

Whether to include spaces in the count

Server

More PHP Snippets