Snippet Name: Add a period at the end of a string if there isn't one there already Description: Simple way to add a period at the end of a string or sentence if there isn't one there already. Also see:» Neatly trim a string to a set number o... » Search array elements for a substring » Add a period at the end of a string if... » Count capital letters in a string » Search All Words Of A String In mySQL » Remove Extra Spaces From A String » String to Date » Check number of characters in a range » De-Pluralize a String » Truncate Links Over X Chars long » Nice 'Read More...' links » Insert Into Middle Of Text » Periodic COMMIT loop » Filter non-alphanumeric characters » Collapse multiple spaces or dashes » Count words in string Comment: (none) Language: PHP Highlight Mode: PHP Last Modified: March 16th, 2009
Description: Simple way to add a period at the end of a string or sentence if there isn't one there already.
Also see:» Neatly trim a string to a set number o... » Search array elements for a substring » Add a period at the end of a string if... » Count capital letters in a string » Search All Words Of A String In mySQL » Remove Extra Spaces From A String » String to Date » Check number of characters in a range » De-Pluralize a String » Truncate Links Over X Chars long » Nice 'Read More...' links » Insert Into Middle Of Text » Periodic COMMIT loop » Filter non-alphanumeric characters » Collapse multiple spaces or dashes » Count words in string
// if there isn't a period at the end of $string, add one IF(SUBSTR($string, -1) != '.'){$string.= '.';}