Browse - programming tips - php get last character of a stringDate: 2009nov30 Language: php Q. How do I get the last character of a string (with PHP) ? A. Using a negative offset for substr is the best way: $str = 'abc'; $last_char = substr($str, -1, 1)
Add a commentSign in to add a comment |