I am looking for a php function to count the number of characters in a string.
If the number of characters if over a set limit, I want to do something with it conditionally... sort of like this...
Example, whereas "$alt" contains the info in question and is the string I want to count the number of characters in.
$alt = substr("$Text",0,200);
// I want to do a conditional statement at this point to do something based
// on if the number of characters is over 200.
Any help will be appreciated.
Regards.