Limit String Length

You can use something similar to the below:

if (strlen($str) > 10)

Leave a Comment