Author: ApPHP | Language: php |
Description: Remove Last Character from String in PHP | Timestamp: 2017-10-03 19:53:07 +0000 |
View raw paste | Reply |
- <?php
- // source: http://www.apphp.com/index.php?snippet=php-remove-last-character-from-string
- // method 1 - substr and mb_substr
- // method 2 - substr_replace
- // method 3 - rtrim
- // it trims all specified characters from end of the string
- ?>
View raw paste | Reply |