Demo For: How To Remove Last Character From String Using PHP – Examples

Example 1: Remove Last character from string using PHP
Before using rtrim:
Hello! This is my random string

After using rtrim:
Hello! This is my random strin

Example 2: Remove Last character from string using PHP
Before using substr_replace:
Hello! This is my random string

After using substr_replace:
Hello! This is my random strin

Example 3: Remove Last character from string using PHP
Before using substr:
Hello! This is my random string

After using substr:
Hello! This is my random strin

Example 4: Remove Last character from string using PHP
Before using mb_substr:
Hello! This is my random string

After using mb_substr:
Hello! This is my random strin