Skip to content

Instantly share code, notes, and snippets.

@apphp-snippets
Created May 20, 2012 20:53
Show Gist options
  • Save apphp-snippets/2759496 to your computer and use it in GitHub Desktop.
Save apphp-snippets/2759496 to your computer and use it in GitHub Desktop.
his is a very common PHP question of HOW TO remove last character from string in PHP. Find below some ways how to delete last character from string in PHP
<?php
/* Source: http://www.apphp.com/index.php?snippet=php-get-remote-ip-address */
// method 1 - substr and mb_substr
substr($string, 0, -1);
mb_substr($string, 0, -1);
// method 2 - substr_replace
substr_replace($string, '', -1);
// method 3 - rtrim
// it trims all specified characters from end of the string
rtrim($string, ".");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment